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

Part Details

{% if part.default_location %} {% endif %} {% if part.default_supplier %} {% endif %} {% if part.minimum_stock > 0 %} {% endif %}
Part name {{ part.name }}
Description {{ part.decription }}
Category {% if part.category %} {{ part.category.name }} {% endif %}
Default Location {{ part.default_location.pathstring }}
Default Supplier {{ part.default_supplier.supplier.name }} | {{ part.default_supplier.SKU }}
Units {{ part.units }}
Buildable {% include "yesnolabel.html" with value=part.buildable %}
Trackable {% include "yesnolabel.html" with value=part.trackable %}
Purchaseable {% include "yesnolabel.html" with value=part.purchaseable %}
Salable {% include "yesnolabel.html" with value=part.salable %}
Minimum Stock {{ part.minimum_stock }}
{% if part.notes %}
Notes
{{ part.notes }}
{% endif %}
{% endblock %}