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