{% extends "logistics/reports_base.html" %} {% load i18n %} {% block content %}
{% include "logistics/partials/accordion_nav.html" %}

{{ location.name }} {% trans "Aggregate Stock Report" %}

{% if location.children %} {% for child in location.children %} {% endfor %} {% else %} {% for child in location.facilities %} {% endfor %} {% endif %}
Facility Stockouts Emergency Low In Stock Overstocks
{{ child.name }} {{ child.stockout_count }} {{ child.emergency_stock_count }} {{ child.low_stock_count }} {{ child.good_supply_count }} {{ child.overstocked_count }}
{{ child.name }} {{ child.stockout_count }} {{ child.emergency_stock_count }} {{ child.low_stock_count }} {{ child.good_supply_count }} {{ child.overstocked_count }}

Note: these numbers represent the total number of stockouts across all commodities in the region indicated. The above table also does not reflect commodities for which the monthly consumption is unknown.

{% endblock %}