{% extends "part/part_base.html" %} {% load static %} {% block details %} {% include 'part/tabs.html' with tab='bom' %}

Bill of Materials

{% for bom_item in part.bom_items.all %} {% with sub_part=bom_item.sub_part %} {% endwith %} {% endfor %}
Part Description Quantity Edit
{{ sub_part.name }} {{ sub_part.description }} {{ bom_item.quantity }}
{% endblock %} {% block javascript %} {% endblock %}