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

{% trans "Inventory & Analytics" %}

Sync Inventory Back
{% 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 }}
{% endif %}

{% trans "Current Corp Inventory (ESI Synced)" %}

{% for inv in inventory %} {% empty %} {% endfor %}
Item Total Quantity
{{ inv.item_type__name }} {{ inv.item_type__name }}
{{ inv.total_qty|intcomma }}
No inventory records found

To populate your inventory, you must first configure which Corporate Hangars to track.

Go to Configurations
{% endblock %}