{% extends "allianceauth/base.html" %} {% load static %} {% load i18n %} {% block page_title %}{% translate "Notifications" %}{% endblock %} {% block content %}

{% translate "Notifications" %}

{% if unread %} {% for notif in unread %} {% endfor %}
{% translate "Timestamp" %} {% translate "Title" %} {% translate "Action" %}
{{ notif.timestamp }} {{ notif.title }}
{% else %}
{% translate "No unread notifications." %}
{% endif %}
{% if read %} {% for notif in read %} {% endfor %}
{% translate "Timestamp" %} {% translate "Title" %} {% translate "Action" %}
{{ notif.timestamp }} {{ notif.title }}
{% else %}
{% translate "No read notifications." %}
{% endif %}
{% endblock %}