Files
pingu-concerts/app/templates/_user_menu.html
T

13 lines
940 B
HTML

<details class="user-menu">
<summary>☠ {{ user.display_name }}{% if user.notification_count %} <span class="metal-notification" title="{{ user.notification_count }} neue Nachricht(en) oder Anfrage(n)" aria-label="Neue Benachrichtigungen">🤘<b>{{ user.notification_count }}</b></span>{% endif %}</summary>
<div class="user-menu-panel">
<a href="/profile">Mein Profil</a>
<a href="/messages">Nachrichten{% if user.unread_message_count %} <span class="menu-count">{{ user.unread_message_count }}</span>{% endif %}</a>
{% if user.event_invitation_count %}<a href="/#event-invitations">Veranstaltungseinladungen <span class="menu-count">{{ user.event_invitation_count }}</span></a>{% endif %}
{% if user.is_admin %}<a href="/admin">⚙️ Verwaltung</a>{% endif %}
<form method="post" action="/logout">
<button type="submit">Abmelden</button>
</form>
</div>
</details>