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

Stock for {{ facility.name }}

{% if stockonhands %} {% for stockonhand in stockonhands %} {% endfor %}
{% trans "Commodity" %} {% trans "Months Until Stockout" %} {% trans "Current Stock" %} {% trans "Monthly Consumption" %} {% trans "Emergency Level" %} {% trans "Reorder Level" %} {% trans "Maximum Level" %}
{{ stockonhand.product.name }} {{ stockonhand.months_remaining|default_if_none:"n/a" }} {{ stockonhand.quantity|default_if_none:"n/a" }} {{ stockonhand.monthly_consumption|default_if_none:"not set" }} {{ stockonhand.emergency_reorder_level|default_if_none:"n/a" }} {{ stockonhand.reorder_level|default_if_none:"n/a" }} {{ stockonhand.maximum_level|default_if_none:"n/a" }}

INPUT STOCK for {{ facility.name }} {% if last_reported %}

The last report received was on {{ last_reported|date:"M d, h:m A" }}.

{% endif %} {% else %}

{{ facility.name }} has not been configured with the appropriate stock yet. Please contact Focus Region Health Project for assistance.
{% endif %}
{% endblock %}