{% extends "invoices/base-print.html" %} {% load invoice_tags %} {% load perm_tags %} {% load base_filters %} {% block title %}{{ block.super }} {% trans 'Invoices' %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}
{% if back_link %}
« {% trans "Back" %}
{% endif %} {% if invoices %} {% endif %} {% for invoice in invoices %}
{% if invoice.region and invoice.region.invoice_header %} {{ invoice.region.invoice_header|safe }} {% else %} {% include "invoices/include/default_invoice_header.html" with obj=invoice.get_object obj_name=invoice.get_object_name %} {% endif %} {% include "invoices/include/invoice_view_display.html" with obj=invoice.get_object obj_name=invoice.get_object_name %}
{% invoice_object_display request invoice %}
{% trans 'Description' %} {% trans 'Line Amount' %}
{% invoice_total_display request invoice %}
{% if invoice.is_void %}
VOIDED
{% endif %}
{% if invoice.region and invoice.region.invoice_footer %} {{ invoice.region.invoice_footer|safe }} {% else %} {% include "invoices/include/default_invoice_footer.html" %} {% endif %}

{% endfor %}
{% endblock %}