{{ node.name }}{{ node.quantity|floatformat:0|intcomma }}
{% if node.base_quantity and node.base_quantity > node.quantity %}
{{ node.base_quantity|floatformat:0|intcomma }}
{% endif %}
{% if node.provided_from_stock and node.provided_from_stock > 0 %}
{{ node.provided_from_stock|floatformat:0|intcomma }} in stock
{% endif %}
{% if node.is_excluded %}
Excluded
{% endif %}
{% if node.sub_materials %}
{% endif %}
{% if node.sub_materials %}
{% for child in node.sub_materials %}
{% with counter_str=forloop.counter|stringformat:"s" %}
{% with new_prefix=prefix|stringformat:"s"|add:"_"|add:counter_str %}
{% include "industry_reforged/partials/bom_tree_node.html" with node=child prefix=new_prefix %}
{% endwith %}
{% endwith %}
{% endfor %}