{% extends 'base.html' %} {% block content %}
{% if current_balance > 0 %} We owe farm {{ current_balance|currency }} {% else %} Farm owes us {{ (current_balance * -1)|currency }} {% endif %}
Account: {{ account_txn.account.name }}
Amount: {{ account_txn.amount|currency }}
Date: {{ account_txn.date|date_format }}
This account transaction will be updated when you save changes.