{% extends "djangobmf/report_html_base.html" %}
{% load i18n %}
{% block title %}{% blocktrans with name=object.name %}Invoice {{ name }}{% endblocktrans %}{% endblock %}
{% block address %}
{{ object.invoice_address.as_report|linebreaksbr }}
{% endblock %}
{% block extra %}
{% trans "Your contact person" %}:
{{ block.super }}
{% endblock %}
{% block document %}
{% blocktrans with name=object.name %}Invoice {{ name }}{% endblocktrans %} | {{ object.created|date:"DATE_FORMAT" }} |
{% trans "Dear Valued Customer," %}
wir lieferten Ihnen die nachfolgend aufgeführten Artikel, die wir Ihnen hiermit in Rechnung stellen:
{% trans "Quantity" %} | {% trans "Article" %} | {% trans "Tax" %} | {% trans "Unit price" %} | {% trans "Total price" %} |
---|---|---|---|---|
{{ item.amount }} |
{{ item.name }}
{% if item.description %} |
{% for tax, value in item.calc_taxes %}
{{ tax }}{% if not forloop.first %} {% endif %} {% endfor %} |
{{ item.calc_net_unit }} € | {{ item.calc_net }} € |
{% trans "Subtotal" %} | {{ object.calc_net }} € |
{{ tax }} | {{ value }} € |
{% trans "Billing amount" %} | {{ object.calc_gross }} € |
Bitte überweisen Sie den Rechnungsbetrag innerhalb der nächsten 14 Tage auf eines der unten angegebenen Konten. Herzlichen Dank im Voraus.
{% trans "With kind regards" %}
{{ object.employee }}