{% load i18n %} {% get_current_language as CURRENT_LANGUAGE %}
{% if header_show_lang %}
{% csrf_token %}
{% endif %} {% if header_show_dashboard %} {% trans "Zum Dashboard" %} {% endif %} {% if header_show_home %} {% trans "Zur Startseite" %} {% endif %} {% if request.user.is_authenticated %}
{% if header_unread_notification_count %} {{ header_unread_notification_count }} {% endif %}
{% trans "Benachrichtigungen" %} {% if header_unread_notification_count %}
{% csrf_token %}
{% endif %}
{% if header_notifications %}
{% for notification in header_notifications %}
{{ notification.title }} {% if notification.body %}

{{ notification.body|truncatechars:140 }}

{% endif %} {{ notification.created_at|date:"d.m.Y H:i" }}
{% if notification.link_url %} {% trans "Öffnen" %} {% endif %} {% if notification.is_unread %}
{% csrf_token %}
{% endif %}
{% endfor %}
{% else %}
{% trans "Keine Benachrichtigungen vorhanden." %}
{% endif %}
{{ request.user.get_full_name|default:request.user.username }} {{ role_label }}
{{ request.user.get_full_name|default:request.user.username }} {{ request.user.email|default:request.user.username }}
{% trans "Profil" %} {% trans "Passwort ändern" %}
{% csrf_token %}
{% endif %}