{#
Copyright (c) 2015 Chintalagiri Shashank
Released under the MIT license
#}
{% extends "base_templates/base.html" %}
{% block magellan %}
{% endblock %}
{% block main %}
Production Order {{ stage.order.serialno }}
{{ stage.order.title }}
{% if stage.order.card_orders.keys()|length %}
Modules for Production
Card |
Quantity |
{% for card, qty in stage.order.card_orders.iteritems() %}
{{ card }} |
{{ qty }} |
{% endfor %}
{% endif %}
{% if stage.order.delta_orders|length %}
Modules for Delta Modifications
Serial No |
Original |
Target |
{% for delta in stage.order.delta_orders %}
{{ delta.sno }} |
{{ delta['orig-cardname'] }} |
{{ delta['target-cardname'] }} |
{% endfor %}
{% endif %}
Related Documentation
{% for indentsno in stage.order.indent_snos %}
{% endfor %}
Order Documentation
{% for doc in stage.docs %}
{% include 'parts/doc_link_list_element.html' %}
{% endfor %}
-
Serial Number Map
{% for action in stage.order.card_actions %}
- {{ action.ident }}
{% for refdes in action.refdes %}
-
{{ refdes }}
{% endfor %}
{% endfor %}
{% endblock %}