{% extends "site_base.html" %} {% load staticfiles %} {% load i18n %} {% load bootstrap_tags %} {% block head_title %}{% trans "Change Process" %}: {{ process }}{% endblock %} {% block extra_head %} {% endblock %} {% block body_class %}work{% endblock %} {% block body_base %}
{% include "_messages.html" %}
{% trans "Change Process Plan for " %}: {{ process }} {% if process.independent_demand %}

{% trans "for" %}: {{ process.independent_demand }}

{% endif %}
{% csrf_token %}
{% trans "Order" %}: {{ rand_form|as_bootstrap }} {% if demand_form %}

{% trans "Or" %}

{{ demand_form|as_bootstrap }} {% endif %} {% trans "Process" %}: {{ process_form|as_bootstrap }}
{% trans "Planned Outputs" %}: {{ output_formset.management_form }} {% for form in output_formset %} {{ form.id }}
{% trans "Resource Type" %}: {{ form.resource_type }}
{% trans "Quantity" %}: {{ form.quantity }} {% trans "Unit" %}: {{ form.unit_of_quantity }}
{% trans "Description" %}: {{ form.description }}
{% endfor %} {% trans "Planned Citables" %}: {{ citation_formset.management_form }} {% for form in citation_formset %} {{ form.id }}
{% trans "Resource Type" %}: {{ form.resource_type }} {% trans "Cite" %}: {{ form.quantity }}
{% trans "Description" %}: {{ form.description }}
{% endfor %} {% trans "Planned Work" %}: {{ work_formset.management_form }} {% for form in work_formset %} {{ form.id }}
{% trans "Type of work" %}: {{ form.resource_type }}
{% trans "Hours" %}: {{ form.quantity }}
{% trans "Description" %}: {{ form.description }}
{% endfor %} {% trans "Planned Consumables" %}: {{ consumable_formset.management_form }} {% for form in consumable_formset %} {{ form.id }}
{% trans "Resource Type" %}: {{ form.resource_type }}
{% trans "Quantity" %}: {{ form.quantity }} {% trans "Unit" %}: {{ form.unit_of_quantity }}
{% trans "Description" %}: {{ form.description }}
{% endfor %} {% trans "Planned Usables" %}: {{ usable_formset.management_form }} {% for form in usable_formset %} {{ form.id }}
{% trans "Resource Type" %}: {{ form.resource_type }}
{% trans "Quantity" %}: {{ form.quantity }} {% trans "Unit" %}: {{ form.unit_of_quantity }}
{% trans "Description" %}: {{ form.description }}
{% endfor %}
{% endblock %} {% block extra_script %} {% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}