{% extends 'base.html' %} {% load static %} {% block title %}Bill of Materials List - Manufacturing App{% endblock %} {% block content %}

Bill of Materials

Create BOM
{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% for bom in boms %} {% empty %} {% endfor %}
BOM Code Product Version Status Created Actions
{{ bom.bom_code }} {{ bom.product.name }} {{ bom.version }} {% if bom.is_active %} Active {% else %} Inactive {% endif %} {{ bom.created_at|date:"M d, Y" }}
No bills of materials found. Create your first BOM
{% endblock %}