{% load humanize %}
{% load i18n %}
{# Recursive tree for production materials #}
{% for mat in materials %}
{% if mat.sub_materials and mat.sub_materials|length > 0 %}
{% else %}
{% endif %}
{{ mat.type_name }}x{{ mat.quantity|intcomma }}
{# Switch à droite uniquement pour les items avec sous-matériaux #}
{% if mat.sub_materials and mat.sub_materials|length > 0 %}
Prod
{% endif %}
{% if mat.sub_materials and mat.sub_materials|length > 0 %}
{% include "indy_hub/material_tree.html" with materials=mat.sub_materials level=level|add:1 %}