{% extends "themis/base.html" %} {% block title %}Notifications — {{ themis_app_name }}{% endblock %} {% block content %}

Notifications

{% if include_read %} Show unread only {% else %} Show all {% endif %} {% if unread_count %}
{% csrf_token %}
{% endif %}
{% if notifications %}
{% for notification in notifications %}
{{ notification.get_level_display }}

{{ notification.title }}

{% if not notification.is_read %} New {% endif %}
{% if notification.message %}

{{ notification.message }}

{% endif %}
{{ notification.created_at|timesince }} ago {% if notification.source_app %} from {{ notification.source_app }} {% endif %}
{% if notification.url %}
{% csrf_token %}
{% elif not notification.is_read %}
{% csrf_token %}
{% endif %}
{% csrf_token %}
{% endfor %}
{% else %}

{% if include_read %} No notifications found. {% else %} No unread notifications. Show all notifications {% endif %}

{% endif %}
{% endblock %}