{% extends 'base.html' %} {% block content %}

{{ _("Notifications") }}

{{ _("Mark all as read") }}
{% if notifications %}
{% for notification in notifications %}

{{ _("System") }}:

{% if notification.is_read %}

{{ notification.message|safe }} {{ notification.created|timesince }}

{% else %}

{{ notification.message|safe }} {{ notification.created|timesince }}

{% endif %}

{{ notification.created }}

{% endfor %}
{% else %}

No notifications found.

{% endif %} {% endblock %}