{% extends 'dashboard/layout.html' %} {% load i18n %} {% load currency_filters %} {% block body_class %}users{% endblock %} {% block title %} {% trans "Product alerts" %} | {{ block.super }} {% endblock %} {% block breadcrumbs %}
{% endblock %} {% block headertext %} {% trans "Product alerts" %} {% endblock %} {% block dashboard_content %}{% trans "Product" %} | {% trans "User" %} | {% trans "Status" %} | {% trans "Date created" %} | {% trans "Date alert sent" %} | |
---|---|---|---|---|---|
{{ alert.product }} | {% if alert.user %} {{ alert.user.email }} {% else %} {{ alert.email }} {% trans "(Anonymous)" %} {% endif %} | {{ alert.status }} | {{ alert.date_created }} | {{ alert.date_closed|default:"-" }} | {% trans "Edit" %} {% trans "Delete" %} |
{% trans "No alerts found." %}
{% endif %} {% endblock dashboard_content %}