{% extends "base.html" %} {% block content %}
{% if notifications_new is not none: %}
Clear All [x]
{% for notification in notifications_new %}
{{ notification.title }}
{{ notification.diff_time }} ({{ notification.trigger_time.strftime('%d-%b-%y %H:%M') }})

{{ notification.message }}

{% endfor %} {% else %}

No new notifications

{% endif %}
{% endblock %}