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

{{ _("Notifications") }}

{% if notifications %}
{% for notification in notifications %}

{{ _("System")}}:

{% if not 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 %}