{% extends "registered/base.html" %} {% load staticfiles %} {% load i18n %} {% block title %}{% trans "Notifications" %}{% endblock %} {% block content %}

{% trans "Notifications" %}

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