{% extends 'base.html' %} {% block content %}
{% if current_balance > 0 %} Customer owes {{ current_balance|currency }} {% else %} Customer has credit of {{ (current_balance * -1)|currency }} {% endif %}