Nachrichten
{% if loggedin_user.amount_unread_notifications > 10 %}
Du hast viele ungelesene Benachrichtigungen. Um deine Oberfläche übersichtlich zu halten und wichtige Updates nicht zu verpassen, nimm dir bitte einen Moment Zeit sie zu überprüfen und als gelesen zu markieren (✓).
{% endif %}
{% for notification in notifications %}
{% if not notification.read_at %}
{{ notification.category }} • {{ notification.created_at | date(timezone="Europe/Vienna", format="%d.%m.%Y %H:%M",) }}
{{ notification.message | safe }}
{% endif %}
{% endfor %}
Vergangene Nachrichten (14 Tage)
{% for notification in notifications %}
{% if notification.read_at %}
{{ notification.category }} • {{ notification.created_at | date(timezone="Europe/Vienna", format="%d.%m.%Y %H:%M") }}
{{ notification.message | safe }}
{% endif %}
{% endfor %}
{% if "Donau Linz" in loggedin_user.roles and "Unterstützend" not in loggedin_user.roles and "Förderndes Mitglied" not in loggedin_user.roles %}
{% endif %}
{% if "scheckbuch" in loggedin_user.roles %}
{% endif %}
{% if "schnupper-betreuer" in loggedin_user.roles %}
{% endif %}
{% if "Vorstand" in loggedin_user.roles %}
{% endif %}
{% if "admin" in loggedin_user.roles %}
{% endif %}
{% if loggedin_user.weight and loggedin_user.sex and loggedin_user.dob %}