{% extends "invoices/base-print.html" %} {% load invoice_tags %} {% load perm_tags %} {% load base_filters %} {% block title %}{{ block.super }}{% if obj_name %}{{ obj_name|capfirst }}{% endif %} {% trans 'Invoice' %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}
{% if invoice.region and invoice.region.invoice_header %} {{ invoice.region.invoice_header|safe }} {% else %} {% include "invoices/include/default_invoice_header.html" %} {% endif %} {% include "invoices/include/invoice_view_display.html" %}
{% invoice_object_display request invoice %}
{% trans 'Description' %} {% trans 'Line Amount' %}
{% invoice_total_display request invoice %}
{% if invoice.is_void %}
VOIDED
{% endif %}
{% payment_history_display request invoice %}
{% if invoice.region and invoice.region.invoice_footer %} {{ invoice.region.invoice_footer|safe }} {% else %} {% include "invoices/include/default_invoice_footer.html" %} {% endif %}
{% endblock %}