{{ 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.provided_from_child_order and node.provided_from_child_order > 0 %}
{{ node.provided_from_child_order|floatformat:0|intcomma }} from child order
{% endif %}
{% if node.is_excluded %}
Excluded
{% endif %}
{% if node.sub_materials %}
{% if order and order.status == 'REQUESTED' and perms.industry_reforged.corp_access %}
{% endif %}
{% 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 %}