{# 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_configs.html" as configs %} {% import "parts/module_boms.html" as boms %} {% block magellan %}
{% endblock %} {% block main %}

Cable Details

Documentation

{% if stage.inclusion %}
Inclusion
{{ boms.render_inclusion(stage.inclusion) }}
{% endif %}
Reference BOM
{{ boms.render_bom(stage.prototype.obom) }}
{% if stage.prototype.validation_errors.terrors %}
Validation Errors
{{ validation.render_validation_errors(stage.prototype.validation_errors) }}
{% endif %}
Configuration
{{ configs.render_configuration(stage.prototype) }}
{{ costing_chart.render_indicative_costing_chart(stage.prototype) }}
{% endblock %}