{% extends "base.html" %} {% load i18n %} {% load rowtags %} {% block extrahead %} {% endblock %} {% block content %}
{% csrf_token %}
{% with contactForm as form %} {% include "form.html" %} {% endwith %} {% with addressForm as form %} {% include "form.html" %} {% endwith %}
{% for hidden in invoiceForm.hidden_fields %} {{ hidden }} {% endfor %} {% with invoiceForm.invoice_id as field %} {% include "field.html" %} {% endwith %} {% with invoiceForm.state as field %} {% include "field.html" %} {% endwith %} {% with invoiceForm.edition_date as field %} {% include "field.html" %} {% endwith %} {% with invoiceForm.payment_date as field %} {% include "field.html" %} {% endwith %} {% with invoiceForm.payment_type as field %} {% include "field.html" %} {% endwith %} {% with invoiceForm.paid_date as field %} {% include "field.html" %} {% endwith %} {% with invoiceForm.execution_begin_date as field %} {% include "field.html" %} {% endwith %} {% with invoiceForm.execution_end_date as field %} {% include "field.html" %} {% endwith %} {% with invoiceForm.penalty_date as field %} {% include "field.html" %} {% endwith %} {% with invoiceForm.penalty_rate as field %} {% include "field.html" %} {% endwith %} {% with invoiceForm.discount_conditions as field %} {% include "field.html" %} {% endwith %} {% with invoiceForm.footer_note as field %} {% include "field.html" %} {% endwith %}
{{ invoicerowformset.management_form }} {% for form in invoicerowformset.forms %}
{{ form.non_field_errors }} {{ form.label.errors|format_errors:form.label.label }} {{ form.proposal.errors|format_errors:form.proposal.label }} {{ form.category.errors|format_errors:form.category.label }} {{ form.quantity.errors|format_errors:form.quantity.label }} {{ form.unit_price.errors|format_errors:form.unit_price.label }} {{ form.vat_rate.errors|format_errors:form.vat_rate.label }} {{ form.detail.errors|format_errors:form.detail.label }} {{ form.ownedobject_ptr }}{{ form.label.label }} : {{ form.label }} {{ form.proposal }} {{ form.balance_payments.label }} : {{ form.balance_payments }} {{ form.category }} {{ form.quantity.label }} : {{ form.quantity }} {{ form.unit_price.label }} : {{ form.unit_price }}{% if user.get_profile.vat_number %} {{ form.vat_rate }}{% endif %}{{ form.DELETE }} {% trans
{{ form.detail.label }} : {{ form.detail }}
{% endfor %}
{% endblock %}