{% extends "invoices/base.html" %} {% load bootstrap_pagination_tags %} {% load invoice_tags %} {% load base_filters %} {% block title %}{{ block.super }}{% trans 'Invoice Reports Overview' %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}
{% if form.start_dt.help_text %} {{ form.start_dt.help_text }}
{% endif %} {% trans 'From:' %} {{ form.start_dt }}   {% trans 'To:' %} {{ form.end_dt }}   {{ form.entity }}
 
{% trans "Date Period" %} {% trans 'Total Amount Paid' %} {% trans 'Total Credit Card Payment' %} {% trans "Total Amount Not Paid" %} {% trans 'Invoice Total' %}
{{ start_dt }} - {{ end_dt }} {% if is_y2d %}
{% trans "(Year to Date)" %} {% endif %}
{{ invoice_total_amount_paid|format_currency }} {{ total_cc|format_currency }} {{ invoice_total_balance|format_currency }} {{ invoice_total_amount|format_currency }}
{% if invoice_total_amount %}

{% trans 'Invoice Total by Invoice Type' %}

{% endif %} {% if invoice_total_amount_paid %}

{% trans 'Total Amount Paid by Invoice Type' %}

{% endif %}
{% if total_cc %}

{% trans 'Total Credit Card Payment by Invoice Type' %}

    {% for k, v in total_cc_d.items %}
  • {{ k|underscore_space|title }}: {{ v.0|format_currency }} ({{ v.1 }})
  • {% endfor %}
{% endif %} {% if invoice_total_balance %}

{% trans 'Total Amount Not Paid by Invoice Type' %}

{% endif %}
{% endblock %} {% block extra_body %} {{ block.super }} {% if invoice_total_amount or invoice_total_amount_paid or total_cc_d or balance_d %} {% endif %} {% endblock %}