{% extends 'dashboard/layout.html' %} {% load currency_filters %} {% load i18n %} {% block title %} {{ title }} | {% trans "Accounts" %} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block header %} {% endblock header %} {% block dashboard_content %}
{% include 'partials/form_fields.html' %}
{% if show_report %}

Transactions between {{ start_date }} and {{ end_date }}

{% for row in cash_rows %} {% endfor %} {% for row in unpaid_rows %} {% endfor %} {% for row in refund_rows %} {% endfor %} {% for row in redeem_rows %} {% endfor %} {% for row in closure_rows %} {% endfor %}
INCREASES IN DEFERRED INCOME LIABILITY
Sales
{{ row.name }} {{ row.total|currency }}
{{ cash_total|currency }}
Unpaid sources
{{ row.name }} {{ row.total|currency }}
{{ unpaid_total|currency }}
Refunds
{{ row.name }} {{ row.total|currency }}
{{ refund_total|currency }}
TOTAL {{ increase_total|currency }}
 
REDUCTIONS IN DEFERRED INCOME LIABILITY
Redemptions
{{ row.name }} {{ row.total|currency }}
{{ redeem_total|currency }}
Expired
{{ row.name }} {{ row.total|currency }}
{{ closure_total|currency }}
TOTAL {{ reduction_total|currency }}
 
DIFFERENCE IN POSITION {{ position_difference|currency }}
{% endif %} {% endblock dashboard_content %}