{% extends "oscar/customer/baseaccountpage.html" %} {% load i18n %} {% block tabcontent %} {% if notifications %} {% include "oscar/partials/pagination.html" %}
{% csrf_token %} {% for notification in notifications %} {% endfor %}
{% if notification.is_read %} {% else %} {% endif %} {% if notification.is_read %} {{ notification.subject|safe }} {% else %} {{ notification.subject|safe }} {% endif %}
{{ notification.date_sent }}
{% trans 'View' %} {% if list_type == 'inbox' %} {% trans 'Archive' context 'verb' %} {% endif %} {% trans 'Delete' %}
{% trans "With selected items:" %} {% if list_type == 'inbox' %} {% endif %}
{% include "oscar/partials/pagination.html" %} {% else %}

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

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