{% extends 'dashboard/reports/index.html' %} {% load currency_filters %} {% load i18n %} {% block report %} {% if objects %} {% for alert in objects %} {% endfor %} {% else %} {% endif %}
{% trans "Product" %} {% trans "Partner" %} {% trans "Low stock threshold" %} {% trans "Current available stock" %} {% trans "Date alert raised" %}
{{ alert.stockrecord.product.get_title }} {{ alert.stockrecord.partner.display_name }} {{ alert.stockrecord.low_stock_threshold }} {{ alert.stockrecord.net_stock_level }} {{ alert.date_created }}
{% trans "No stock alerts were created in this period" %}
{% include "dashboard/partials/pagination.html" %} {% endblock %}