{% extends "epic/base_layout.html" %} {% load staticfiles %} {% block extrahead %} {{ block.super }} {% endblock extrahead %} {% block content %} {{ block.super }} {% if num_changes == 0 %}
The bill of material for parts {{bom_part.html_link|safe}} and {{other_bom_part.html_link|safe}} are the same.
{% else %}Type of change | Part | Mfg PN | Value | Old Qty | New Qty | Change | {% for p in removed %}
---|---|---|---|---|---|---|
Removed | {{p.0.html_link|safe}} | {{p.0.mfg}} {{p.0.mfg_pn}} | {{p.0.val}} | {{p.1}} | {{p.2}} | {{p.3|stringformat:"+d"}} |
Added | {{p.0.html_link|safe}} | {{p.0.mfg}} {{p.0.mfg_pn}} | {{p.0.val}} | {{p.1}} | {{p.2}} | {{p.3|stringformat:"+d"}} |
Qty changed | {{p.0.html_link|safe}} | {{p.0.mfg}} {{p.0.mfg_pn}} | {{p.0.val}} | {{p.1}} | {{p.2}} | {{p.3|stringformat:"+d"}} |