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

{% trans "Consolidated Shopping List" %}

{% if custom_item_name %}
{% trans "For:" %} {{ custom_item_name }} (x{{ custom_item_quantity }})
{% endif %}
{% trans "Back" %}

{% trans "Bill of Materials Overview" %}

{{ bom_materials|length }} Materials
{% for mat in bom_materials %} {% empty %} {% endfor %}
{% trans "Material" %} {% trans "Total Quantity Required" %} {% trans "Est. Jita Unit Price" %} {% trans "Est. Total Cost" %}
{{ mat.name }} {{ mat.name }}
{{ mat.quantity|intcomma }} {{ mat.price_per_unit|eve_isk }} {{ mat.total_price|eve_isk }}
No materials found.
{% trans "Estimated Total Materials Cost:" %} {{ total_bom_price|eve_isk }}

{% trans "Recursive Production Tree" %}

{% trans "Processing Tree..." %}
{% if recursive_bom_tree %} {% for root_node in recursive_bom_tree %}
{% include "industry_reforged/partials/bom_tree_node.html" with node=root_node prefix=forloop.counter|stringformat:"s" %}
{% endfor %} {% else %}

{% trans "No production tree available." %}

{% endif %}
{% endblock %}