{% extends "admin/base_site_nav.html" %}
{% load i18n %}
{% block stylesheet %}{% load adminmedia %}{% admin_media_prefix %}css/dashboard.css{% endblock %}
{% block coltype %}colM{% endblock %}
{% block content %}
{% include "operationcontext.html" %}
{% include "resourcecontext.html" %}
{% include "buffercontext.html" %}
{% include "locationcontext.html" %}
{% include "itemcontext.html" %}
Operation |
Resource |
Buffer |
Location |
Item |
Consumed Qty |
This |
Cumulative |
{% for i in supplypath %}
{% ifchanged i.level i.operation %}{% superlink i.operation operation %}{% endifchanged %} |
{% ifchanged i.level i.operation %}{% if i.operation %}{% for j in i.operation.loads.all %}{% superlink j.resource resource %} {% endfor %}{% endif %}{% endifchanged %} |
{% if i.buffer %}{% superlink i.buffer buffer %} |
{% superlink i.buffer.location location %} |
{% superlink i.buffer.item item %} |
{% else %} | | | {% endif %}
{% if i.consumingflow %}{{i.consumingflow.quantity|floatformat:2}}{% endif %} |
{{i.cumquantity|floatformat:2}} |
{% endfor %}
{% endblock %}