{% extends "wagtailadmin/base.html" %} {% load wagtailadmin_tags %} {% block titletag %}Движение лома{% endblock %} {% block extra_css %} {{ block.super }} {% endblock %} {% block content %} {% include "wagtailadmin/shared/header.html" with title="Движение лома" icon="car-battery" %} {% include "reports/date-interval-filter.html" %}
Тип операции
Итого на начало
Принято (Сдано)
Итого на конец
шт.
кг
руб.
шт.
кг
руб.
шт.
кг
руб.
Всего
{% for row in totals.total %} {% for x in row %}
{{ x|safe }}
{% endfor %} {% endfor %}
Принято
{% for row in totals.accepted %} {% for x in row %}
{{ x|safe }}
{% endfor %} {% endfor %}
Сдано
{% for row in totals.disposed %} {% for x in row %}
{{ x|safe }}
{% endfor %} {% endfor %}
Восстановлено
{% for row in totals.restored %} {% for x in row %}
{{ x|safe }}
{% endfor %} {% endfor %}
Продано восстановленных
{% for row in totals.restored_sold %} {% for x in row %}
{{ x|safe }}
{% endfor %} {% endfor %}
{% endblock %}