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

{{ _("Notifications") }}

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

{{ _("System")}}:

{% if not notification.is_read %}

{{ notification.message }} {{ notification.created_at|timesince }}

{% else %}

{{ notification.message }} {{ notification.created_at|timesince }}

{% endif %}

{{ notification.created_at }}

{% endfor %}
{% else %}

No notifications found.

{% endif %} {% endblock %}