{#
Copyright (c) 2015 Chintalagiri Shashank
Released under the MIT license
#}
{% extends "base_templates/base.html" %}
{% block magellan %}
{% endblock %}
{% block main %}
Indent {{ stage.indent.serialno }}
{{ stage.indent.title }}
Indent Documentation
{% for doc in stage.indent.docs %}
{% include 'parts/doc_link_list_element.html' %}
{% endfor %}
-
Indent Composite Bom
{% if stage.indent.cobom %}
Ident |
{% for earmark in stage.indent.cobom.descriptors %}
{{ earmark.configname }} |
{% endfor %}
Quantity |
{% for line in stage.indent.cobom.lines %}
{{ line.ident }} |
{% for column in line.columns %}
{{ column or '-' }} |
{% endfor %}
{{ line.quantity }} |
{% endfor %}
{% else %}
{% endif %}
Related Indents
{% for sno in stage.indent.supplementary_indent_snos %}
Supplementary Indent
{{ sno }}
{% endfor %}
{% if stage.indent.root_indent_sno != stage.indent.serialno %}
{% endif %}
Related Documentation
{% if stage.indent.prod_order_sno %}
{% endif %}
{% if stage.indent.root_order_snos %}
{% for sno in stage.indent.root_order_snos %}
{% endfor %}
{% endif %}
{% endblock %}