{# Copyright (c) 2015 Chintalagiri Shashank Released under the MIT license #} {% extends "base_templates/base.html" %} {% import "parts/validation_errors.html" as validation %} {% import "parts/costing_chart.html" as costing_chart %} {% import "parts/module_boms.html" as boms %} {% block magellan %}
{% endblock %} {% block main %}

Product Detail

  • {{ stage.product.ident }}
  • {{ stage.product.info.desc }}
  • {% if stage.product.info.status %} {{ stage.product.info.status }} {% endif %} {% if stage.product.info.line %} {{ stage.product.info.line }} {% endif %} {% if stage.product.info.ptype %} {{ stage.product.info.ptype }} {% endif %}
Product Contents
{% for card, qty in stage.product.card_listing %}
{% endfor %} {% for cable, qty in stage.product.cable_listing %}
{% endfor %}
{% if stage.product.validation_errors.terrors %}
Validation Errors
{{ validation.render_validation_errors(stage.product.validation_errors) }}
{% endif %}
Composite BOM
{{ boms.render_cobom(stage.product.obom) }}
{{ costing_chart.render_indicative_costing_chart(stage.product) }}
{% endblock %}