{% extends "base.html" %} {% block title %}Payments — {{ account.name }}{% endblock %} {% block page_title %}Card Payments{% endblock %} {% block topbar_actions %} Pay Card {% endblock %} {% block content %}
{{ account.name }}
Payment History
Paid This Month
+{{ paid_this_month | currency }}
{% set owed = [0, -account.balance] | max %}
Still Owed
{% if owed > 0 %}-{% endif %}{{ owed | currency }}
Back to Accounts View Charges
{% if payments %}
{% for txn in payments %} {% endfor %}
Date Description From Account Amount Paid
{{ txn.date.strftime('%b %d, %Y') }}
{{ txn.description }}
{% if txn.notes %}
{{ txn.notes | truncate(60) }}
{% endif %}
{{ txn.account.name if txn.account else '—' }} +{{ txn.amount | currency }}
{% if pagination.pages > 1 %}
{{ ((pagination.page-1)*30)+1 }}–{{ [pagination.page*30, pagination.total]|min }} of {{ pagination.total }}
{% if pagination.has_prev %} ← Prev {% endif %} {% if pagination.has_next %} Next → {% endif %}
{% endif %}
{% else %}

No payments recorded yet

Use "Pay Card" to record a payment from your checking or savings account.

Record First Payment
{% endif %} {% endblock %}