{% extends 'layout.html' %} {% load i18n %} {% load static %} {% block title %}{% trans "Notifications" %}{% endblock %} {% block content %}

{% trans "Notifications" %}

{% if notifications %}
{% csrf_token %} {% spaceless %} {% endspaceless %}
{% endif %}
{% for notification in notifications %} {% include 'notifications/item.html' %} {% endfor %} {% if not notifications %}

{% trans "You're all caught up!" %}

{% endif %}
{% endblock %}