{% 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 }} {% trans 'Edit' %} {{ form.amount_due }} Bill Date: {{ object.date }} Terms: {{ object.get_terms_display }} External Reference: {{ bill.xref }} {% trans 'Edit' %} {{ form.xref }} {% trans 'Bill State' %} {% csrf_token %} {{ form.amount_paid.label }} {{ form.amount_paid }} {{ form.paid }} {{ form.paid.label }} {{ form.paid_date.label }} {{ form.paid_date }} {{ form.progressible }} {{ form.progressible.label }} {{ form.progress.label }} {{ form.progress }} Save 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 Income Statement {% endblock %}
{% trans 'Customer Information' %}
{{ object.address_1 }} {{ object.address_2 }} {{ object.phone }} {{ object.email }} {{ object.website }}
{% trans 'Bill Amount & Terms' %}
{% 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 }}
{{ 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 }}