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

{% trans "Notifications" %}

{% for notif in unread %} {% endfor %}
{% trans "Timestamp" %} {% trans "Title" %} {% trans "View" %}
{{ notif.timestamp }} {{ notif.title }}
{% for notif in read %} {% endfor %}
{% trans "Timestamp" %} {% trans "Title" %} {% trans "View" %}
{{ notif.timestamp }} {{ notif.title }}
{% endblock %}