{% extends "users/base.html" %} {% block content %}

Alle Benachrichtigungen


{% for notification in usernotifications %}

{% if notification.notificationtype == "agencynews" %} {{notification.notificationtext}}
{% elif notification.notificationtype == "newstandard" %} {{notification.notificationtext}}
{% elif notification.notificationtype == "messagereceived" %} {{notification.notificationtext}}
{% else %} {{notification.notificationtext}}
{% endif %} Am {{notification.created}}

{% endfor %}
{% endblock content %}