b2af866cf0
Add persistent German/English switching, translated UI messages and English 12-hour times. Align desktop event actions while preserving mobile layouts and record bilingual project guidance. Include pending diary deletion exclusions. Validate both languages with nine tests.
7 lines
568 B
HTML
7 lines
568 B
HTML
<nav class="admin-nav" aria-label="{{ _('Adminbereiche') }}">
|
|
<a href="/admin/users" class="{% if admin_section == 'users' %}active{% endif %}">{{ _('👥 Benutzer') }}</a>
|
|
<a href="/admin/venues" class="{% if admin_section == 'venues' %}active{% endif %}">{{ _('📍 Veranstaltungsorte') }}</a>
|
|
<a href="/admin/patches" class="{% if admin_section == 'patches' %}active{% endif %}">{{ _('🧵 Patch-Bilder') }}</a>
|
|
<a href="/admin/statistics" class="{% if admin_section == 'statistics' %}active{% endif %}">{{ _('📊 Nutzungsstatistik') }}</a>
|
|
</nav>
|