{% extends 'generic/object.html' %} {% load plugins %} {% load render_table from django_tables2 %} {% block breadcrumbs %} {{ block.super }} {% endblock %} {% block content %}
Invoices
{% if not object.template %} {% endif %} {% if not 'accounting_dimensions' in hidden_fields %} {% endif %} {% if object.documents %} {% endif %}
Number {{ object.number }}
Template {{ object.template }}
Date {{ object.date }}
Period start {{ object.period_start }}
Period end {{ object.period_end }}
Currency {{ object.currency }}
Accounting dimensions {{ object.accounting_dimensions }}
Amount {{ object.amount }}
Documents Documents
Invoice lines total {{ object.total_invoicelines_amount }}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
Invoice lines
{% render_table invoicelines_table %}
Contracts
{% render_table contracts_table %}
{% plugin_right_page object %} {% endblock content %}