{% extends 'oscar/dashboard/layout.html' %} {% load currency_filters %} {% load i18n %} {% block title %} {{ title }} | {% trans "Accounts" %} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block headertext %}{{ title }}{% endblock %} {% block dashboard_content %}

{% trans "Search" %}

{% include "oscar/dashboard/partials/form_fields_inline.html" with form=form %}
{% if show_report %}

{% trans "Transactions between" %} {{ start_date }} {% trans "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 %}
{% trans "INCREASES IN DEFERRED INCOME LIABILITY" %}
{% trans "Sales" %}
{{ row.name }} {{ row.total|currency }}
{{ cash_total|currency }}
{% trans "Unpaid sources" %}
{{ row.name }} {{ row.total|currency }}
{{ unpaid_total|currency }}
{% trans "Refunds" %}
{{ row.name }} {{ row.total|currency }}
{{ refund_total|currency }}
{% trans "TOTAL" %} {{ increase_total|currency }}
 
{% trans "REDUCTIONS IN DEFERRED INCOME LIABILITY" %}
{% trans "Redemptions" %}
{{ row.name }} {{ row.total|currency }}
{{ redeem_total|currency }}
{% trans "Expired" %}
{{ row.name }} {{ row.total|currency }}
{{ closure_total|currency }}
{% trans "TOTAL" %} {{ reduction_total|currency }}
 
{% trans "DIFFERENCE IN POSITION" %} {{ position_difference|currency }}
{% endif %} {% endblock dashboard_content %}