{% extends "invoices/base-print.html" %} {% load invoice_tags %} {% load perm_tags %} {% load base_filters %} {% load i18n %} {% block title %}{{ block.super }}{% if obj_name %}{{ obj_name|capfirst }}{% endif %} Invoice{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}

{% if obj_name %}{{ obj_name|capfirst }}{% endif %} {% trans "Invoice" %}

{% if SITE_GLOBAL_SITEMAILINGADDRESS %}
{{ SITE_GLOBAL_SITEMAILINGADDRESS }}
{% endif %} {% with invoice.get_object as object %}
{% if object %} {% endif %} {% if invoice.is_tendered %} {% else %} {% endif %}
{% trans "Invoice #" %} {{ invoice.id }}
{% trans "Invoice For" %} {{ object }}
{% trans "Invoice Date" %} {{ invoice.create_dt|date:'N j, Y h:i a' }}
{% trans "Invoice Status" %}{% blocktrans with invoice.tender_date|date:'N j, Y h:i a' as tenddate %}Tendered {{ tenddate }}{% endblocktrans %}{% trans "Estimate" %}
{% trans "Invoice Amount" %} {{ invoice.total|format_currency }}
{% endwith %}
{% invoice_object_display request invoice %}
Description Line Amount
{% invoice_total_display request invoice %}
{% payment_history_display request invoice %}
{% endblock %}