{% extends "base.html" %} {% block title %}Adjust Balance — {{ account.name }}{% endblock %} {% block page_title %}Adjust Balance{% endblock %} {% block content %}
{{ account.name }}
{{ account.account_type | replace('_',' ') | title }}
Current Balance
{{ current_balance | abs | currency }}{% if current_balance < 0 %} (owed){% endif %}

Enter the correct balance. An adjustment transaction will be created for the difference to bring the account in line.

{{ current_user.currency_symbol }}
Cancel
{% endblock %} {% block extra_js %} {% endblock %}