{% extends "base.html" %}
{% block content %}
{% if not notifications %}
You have no notifications.
{% else %}
Notifications:
{% for notification in notifications %}
{% if not notification.is_read %}
{% endif %}
{{ notification.subject }}
{% if not notification.is_read %}
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}