{% extends 'base.html' %} {% load manufacture_extras %} {% block title %}Bill of Materials{% endblock %} {% block content %}

Bill of Materials

New BOM Entry (Multiple Components)
{% if boms %}
{% for bom in boms %} {% endfor %}
Manufactured Product Component Quantity Unit Created Actions
{{ bom.manufactured_product.name }}
{{ bom.manufactured_product.code }}
{{ bom.component.name }} {{ bom.quantity|format_quantity }} {{ bom.unit|default:bom.component.unit }} {{ bom.created_at|date:"d/m/Y" }}
{% if is_paginated %} {% endif %} {% else %}

No Bill of Materials Entries

Start by creating your first BOM entry.

Create BOM Entry
{% endif %}
{% endblock %}