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:
parent
505f40e1c1
commit
da8eb48f2b
@ -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">
|
||||
👤 {{ announcement.author.name }}
|
||||
</span>
|
||||
{% endif %}
|
||||
<span class="meta-views">
|
||||
👁 {{ announcement.views_count or 0 }} wyswietlen
|
||||
</span>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user