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