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