{% extends "default.html" %} {% block pagetitle %}@{{user.username}}'s Bank Statement{% endblock %} {% block pagetype %}bank_statement{% endblock %} {% block content %}

@{{user.username}}'s Bank Statement

@{{user.username}}'s Bank Statement
{% if logs %} {% for log in logs %} {% endfor %}
Balance
{{log.currency}} {% if log.amount > 0 %}+{% endif %}{{log.amount | commas}}
{{log.age_string}}
{{log.reason | safe}} {{log.balance | commas}}
{{macros.pagination("pb-0 pl-0 pt-1")}} {% else %}
There's nothing here right now.
{% endif %}
{% endblock %}