Add bilingual UI and improve event actions layout
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.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<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 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>
|
||||
|
||||
Reference in New Issue
Block a user