{% trans "Virtual" %} |
{% include "slide.html" with state=part.virtual field='virtual' %} |
{% if part.virtual %}
{% trans "Part is virtual (not a physical part)" %} |
{% else %}
{% trans "Part is not a virtual part" %} |
{% endif %}
{% trans "Assembly" %} |
{% include "slide.html" with state=part.assembly field='assembly' %} |
{% if part.assembly %}
{% trans "Part can be assembled from other parts" %} |
{% else %}
{% trans "Part cannot be assembled from other parts" %} |
{% endif %}
{% trans "Component" %} |
{% include "slide.html" with state=part.component field='component' %} |
{% if part.component %}
{% trans "Part can be used in assemblies" %} |
{% else %}
{% trans "Part cannot be used in assemblies" %} |
{% endif %}
{% trans "Trackable" %} |
{% include "slide.html" with state=part.trackable field='trackable' %} |
{% if part.trackable %}
{% trans "Part stock is tracked by serial number" %} |
{% else %}
{% trans "Part stock is not tracked by serial number" %} |
{% endif %}
{% trans "Purchaseable" %} |
{% include "slide.html" with state=part.purchaseable field='purchaseable' %} |
{% if part.purchaseable %}
{% trans "Part can be purchased from external suppliers" %} |
{% else %}
{% trans "Part can be purchased from external suppliers" %} |
{% endif %}
{% if 0 %}
{% trans "Sellable" %} |
{% include "slide.html" with state=part.salable field='salable' %} |
{% if part.salable %}
{% trans "Part can be sold to customers" %} |
{% else %}
{% trans "Part cannot be sold to customers" %} |
{% endif %}
{% endif %}