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

Notifications

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