{% extends "oscar/customer/baseaccountpage.html" %} {% load i18n %} {% block tabcontent %} {% if not alerts %}

{% trans "You do not have any active alerts for out-of-stock products." %}

{% else %}
{% csrf_token %} {% for alert in alerts %} {% endfor %}
{% trans "Product" %} {% trans "Status" %} {% trans "Date created" %}
{% with product=alert.product %} {% if product.is_public %} {{ product.get_title }} {% else %} {{ product.get_title }} {% endif %} {% endwith %} {{ alert.status }} {{ alert.date_created }} {% if alert.can_be_cancelled %} {% trans "Cancel" %} {% endif %}
{% include "oscar/partials/pagination.html" %}
{% endif %} {% endblock tabcontent %}