{% extends 'layout.html' %} {% block header %}

{% block title %} Statement Details {% endblock %}

{% endblock %} {% block content %}
{% include 'credit/statement_info.html' %}
{% with transactions = statement_transactions %} {% include 'credit/transactions_table/transactions.html' %} {% endwith %}

Statistics

{% for tag in tag_totals %} {% if not tag == 'Payments' %} {% endif %} {% endfor %}
Tag Total Avg. Total
{{ tag }} ${{ tag_totals[tag]|currency }} ${{ tag_average_totals[tag]|currency }}
{% endblock %} {% block right_sidebar %}
{% endblock %} {% block javascript %} {% endblock %}