ux(announcements): Dodanie autora ogłoszenia na stronie szczegółów

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Maciej Pienczyn 2026-01-26 22:23:09 +01:00
parent 505f40e1c1
commit da8eb48f2b

View File

@ -77,6 +77,12 @@
font-size: var(--font-size-sm);
}
.meta-author {
color: var(--text-secondary);
font-size: var(--font-size-sm);
font-weight: 500;
}
.announcement-title {
font-size: var(--font-size-3xl);
font-weight: 700;
@ -272,6 +278,11 @@
<span class="meta-date">
{{ announcement.published_at.strftime('%d %B %Y') if announcement.published_at else '' }}
</span>
{% if announcement.author %}
<span class="meta-author">
&#128100; {{ announcement.author.name }}
</span>
{% endif %}
<span class="meta-views">
&#128065; {{ announcement.views_count or 0 }} wyswietlen
</span>