{% extends "base.html" %} {% load staticfiles %} {% block content %}

New:

{% for notification in unread_notifications %}
{{ notification }}
{% endfor %}

Read:

{% for notification in read_notifications %}
{{ notification }}
{% endfor %}
{% endblock %}