{% extends 'hordak/base.html' %} {% load hordak %} {% block page_name %}Reconcile Bank Statements{% endblock %} {% block page_description %}What did you spend money on?{% endblock %} {% block content %} {% for line in statement_lines %} {% if line == reconcile_line %} {% endif %} {% empty %} {% endfor %}
Date Amount Description Account
{{ line.date }} {{ line.amount|color_currency }} {{ line.description }} {% if line.transaction %} {% for leg in line.transaction.legs.all %} {% if leg.account != line.statement_import.bank_account %} {{ leg.account }} {% endif %} {% endfor %} {% elif line != reconcile_line %}
{% endif %}
{% if leg_formset.non_form_errors %}
    {% for error in leg_formset.non_form_errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{% csrf_token %} {{ transaction_form }} {{ leg_formset.management_form }} {% for form in leg_formset %} {% endfor %}
{{ form.amount }} {{ form.description }} {{ form.account }}
Nothing to reconcile, you are up to date

Cancel

{% endblock %}