{% extends "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 %} {{ product.get_title }} {% endwith %} {{ alert.status }} {{ alert.date_created }} {% if alert.can_be_cancelled %} {% trans "Cancel" %} {% endif %}
{% include "partials/pagination.html" %}
{% endif %} {% endblock tabcontent %}