{% extends "base.html" %} {% load i18n %} {% block main %}

{% trans "Download BOM.csv converted from CBOM " %} "{{ object }}"

{% trans "Contents of" %} "{{ bom.description }}"

{% for item in bom_items %} {% endfor %}
{% trans "Position" %} {% trans "IPN" %} {% trans "Description" %} {% trans "QTY" %} {% trans "Unit" %} {% trans "Shape" %}
{{ item.position }} {{ item.ipn.code }} {{ item.ipn.name }} {{ item.qty }} {{ item.unit.code }} {{ item.ipn.shape.code }}

Download BOM.csv

{% endblock %}