gestion/factures/2019/1195.html.jinja2
2019-06-24 13:54:17 +02:00

89 lines
2.3 KiB
Django/Jinja
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% set lines = [
['Subvention pour PyConFr 2019 à Bordeaux, France', 5648, 1],
] %}
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8"/>
{% if number == 'lettre' %}
<title>AFPY - Lettre</title>
{% else %}
<title>AFPy {{ 'Devis' if quotation else 'Facture' }}{{ number }}</title>
{% endif %}
<link type="text/css" rel="stylesheet" href="../commun/style.css" />
</head>
<body>
<header>
<address id="from">
{%- block address_from -%}
Association Francophone Python
2, rue Professeur Zimmermann
69007 LYON
FRANCE
504 398 355 00017
{%- endblock address_from -%}
</address>
<address id="to">
{%- block address_to -%}
Python Software Foundation
9450 SW Gemini Dr.
ECM# 90772
Beaverton, OR 97008
USA
{%- endblock address_to -%}
</address>
</header>
{% block content %}
<dl>
<dt>Date</dt>
<dd>{{ date }}</dd>
<dt>N° de {{ 'devis' if quotation else 'facture' }}</dt>
<dd>{{ number }}</dd>
</dl>
<table>
{% set total = [0] %}
{% for designation, price, quantity in lines %}
{% if loop.first %}
<thead>
<th>Désignation</th>
<th>Prix unitaire</th>
<th>Quantité</th>
<th>Total</th>
</thead>
<tbody>
{% endif %}
<tr>
<td>{{ designation }}</td>
<td>${{ price }}USD</td>
<td>{{ quantity }}</td>
<td>${{ quantity * price }}USD</td>
</tr>
{{ total.append(quantity * price) or '' }}
{% if loop.last %}
</tbody>
<tfoot>
<th colspan="3">Total T.T.C. à payer</th>
<td>${{ total | sum }}USD</td>
</tfoot>
{% endif %}
{% endfor %}
</table>
<footer>
<p>
Taxe sur la valeur ajoutée non applicable, article 293 B du CGI.
</p>
<p>
En votre aimable règlement, au comptant via PayPal. Compte PayPal : tresorier@afpy.org.
</p>
</footer>
{% endblock content %}
</body>
</html>