{% extends "layout.html" %} {% load i18n %} {% block title %} {{ title }} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block headertext %} {{ title }} {% endblock %} {% block content %} {% if notifications %} {% if page_obj %} {% include "partials/pagination.html" %} {% endif %}
{% csrf_token %} {% for notification in notifications %} {% endfor %}
{% if notification.is_new %} {% else %} {% endif %} {{ notification.subject|safe }}
{{ notification.date_sent }}
{% if list_type == 'inbox' %} Archive {% endif %} Delete
{% trans "With selected items:" %} {% if list_type == 'inbox' %} {% endif %}
{% if page_obj %} {% include "partials/pagination.html" %} {% endif %} {% else %}

{% trans "There are no notifications to display." %}

{% endif %} {% endblock content %} {% block onbodyload %} oscar.notifications.init(); {% endblock %}