{% extends 'django_ledger/base.html' %} {% load i18n %} {% load static %} {% load django_ledger %} {% block content %}
{% if form.errors %} {{ form.errors }} {% endif %} {% csrf_token %}

{% trans 'Customer Information' %}

{{ object.subject_name }}

{{ object.address_1 }}
{{ object.address_2 }}
{{ object.phone }}
{{ object.email }}
{{ object.website }}

{% trans 'Bill Amount & Terms' %}

Bill Amount: ${{ object.amount_due | cs_thousands }}

Bill Date: {{ object.date }}

Terms: {{ object.get_terms_display }}

External Reference: {{ bill.xref }}

{% trans 'Bill State' %}

{% csrf_token %}
{{ form.amount_paid }}
{{ form.paid_date }}
{{ form.progress }}
Back

{% trans 'Bill State' %}

{% trans 'Bill State' %}

{{ bill.cash_account }}: ${{ bill.get_amount_cash | cs_thousands }}

{{ bill.receivable_account }}: ${{ bill.get_amount_receivable | cs_thousands }}

{{ bill.payable_account }}: ${{ bill.get_amount_payable | cs_thousands }}

{{ bill.earnings_account }}: ${{ bill.get_amount_earned | cs_thousands }}

{% trans 'Ledger State' %}

{{ bill.cash_account }}: ${{ bill.amount_paid | cs_thousands }}

{{ bill.receivable_account }}: ${{ bill.amount_receivable | cs_thousands }}

{{ bill.payable_account }}: ${{ bill.amount_unearned | cs_thousands }}

{{ bill.earnings_account }}: ${{ bill.amount_earned | cs_thousands }}

{# todo: prefect this info #} Balance Sheet
{% endblock %}