{% extends "industry_reforged/base.html" %} {% load i18n humanize %} {% block details %}

{% trans "Inventory & Analytics" %}

Sync Inventory Back
{% for inv in inventory %} {% endfor %}
Item Total Quantity
{{ inv.item_type__name }} {{ inv.item_type__name }}
{{ inv.total_qty|intcomma }}
{% if low_stock %}
Action Required: Low Stock Detected
{% for item in low_stock %} {% endfor %}
Item Current Stock Target Threshold Deficit
{{ item.item_type.name }} {{ item.current_qty|intcomma }} {{ item.target|intcomma }} {{ item.deficit|intcomma }}
{% else %}
No low stock alerts! All tracked items are above their target thresholds.
{% endif %}
{% for fac_inv in facility_inventories %}
{% for inv in fac_inv.inventory %} {% endfor %}
Item Quantity
{{ inv.item_type__name }} {{ inv.item_type__name }}
{{ inv.total_qty|intcomma }}
{% endfor %}
{% endblock %} {% block extra_javascript %} {{ block.super }} {% endblock %}