fix: use created_by instead of author_id in announcement detail template
Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions
Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
f4af7709b0
commit
4dfe3fb277
@ -390,7 +390,7 @@
|
|||||||
</span>
|
</span>
|
||||||
{% if announcement.author %}
|
{% if announcement.author %}
|
||||||
<span class="meta-author">
|
<span class="meta-author">
|
||||||
👤 <a href="{{ url_for('public.user_profile', user_id=announcement.author_id) }}" style="color:inherit;text-decoration:none;" onmouseover="this.style.textDecoration='underline'" onmouseout="this.style.textDecoration='none'">{{ announcement.author.name }}</a>
|
👤 <a href="{{ url_for('public.user_profile', user_id=announcement.created_by) }}" style="color:inherit;text-decoration:none;" onmouseover="this.style.textDecoration='underline'" onmouseout="this.style.textDecoration='none'">{{ announcement.author.name }}</a>
|
||||||
</span>
|
</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<span class="meta-views">
|
<span class="meta-views">
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user