{% extends "base" %} {% block title %} Notifications {% endblock title %} {% block content %}

Notifications

{% for notification in notifications %}

{{ notification.title }}

{% if notification.content %}

{{ notification.content }}

{% endif %}
{% endfor %}
{% endblock content %}