{% extends "allianceauth/base-bs5.html" %} {% load i18n %} {% load static %} {% load humanize %} {% block page_title %}{{ bp_name }} - {% trans "Crafting Requirements" %}{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% block content %}
{% if product_type_id %} {{ bp_name }} {% else %} {% endif %}

{{ bp_name }}

{% trans "Material requirements for blueprint production" %}

{% trans "Runs" %} ME TE
{% if request.GET.next %} {% endif %}
🚧 IN ACTIVE DEVELOPMENT / DO NOT USE 🚧
{# Tabs to switch between required materials and full production tree #}
{% trans "Required Materials" %}
{% if materials %} {% for mat in materials %} {% endfor %}
{% trans "Material" %} {% trans "Quantity" %}
{{ mat.type_name }} {{ mat.type_name }} {{ mat.quantity }}
{% else %}
{% trans "No materials found for this blueprint." %}
{% endif %}
{% trans "Full Production Tree" %}
{% if materials_tree %}
{% include "indy_hub/material_tree.html" with materials=materials_tree level=0 %}
{% else %}
{% trans "No sub-productions detected for this blueprint." %}
{% endif %}
{% trans "Invoice / Financial Analysis" %}

{% trans "Production Invoice" %}

{% for mat in materials %} {% endfor %}
{% trans "Item" %} {% trans "Qty" %} {% trans "Unit Price" %} {% trans "Line Total" %}
{{ mat.type_name }} {{ mat.quantity }} 0
{% trans "Final Product" %} {{ final_product_qty|default:num_runs }} 0
{% trans "Total Cost" %} 0
{% trans "Total Revenue" %} 0
{% trans "Profit" %} 0 (0%)
{% trans "Items to Purchase" %}

{% trans "Select which intermediate products you will buy, then click " %}

{% trans "Item" %} {% trans "Qty" %} {% trans "Unit Price" %} {% trans "Line Total" %}
{% trans "Total Cost" %} 0
{% endblock content %} {% block extra_javascript %} {% endblock extra_javascript %}