diff --git a/factures/2022/1232.html.jinja2 b/factures/2022/1232.html.jinja2 new file mode 100644 index 0000000..10c2308 --- /dev/null +++ b/factures/2022/1232.html.jinja2 @@ -0,0 +1,12 @@ +{% extends '_layout.jinja2' %} + +{% set lines = [ + ['Sponsoring level « Bronze » for PyConFr 2023', 500, 1], +] %} + +{% block address_to %} + Techware Innovation Limited (RobotKraft Africa) + 103, Omida Shopping Mall + Omida Abeokuta, Ogun State + Nigeria +{% endblock address_to %} diff --git a/factures/2022/1232.pdf b/factures/2022/1232.pdf new file mode 100644 index 0000000..0202f3e Binary files /dev/null and b/factures/2022/1232.pdf differ diff --git a/factures/2022/1233.html.jinja2 b/factures/2022/1233.html.jinja2 new file mode 100644 index 0000000..70780bb --- /dev/null +++ b/factures/2022/1233.html.jinja2 @@ -0,0 +1,88 @@ +{% set lines = [ + ['Subvention pour PyConFr 2023 à Bordeaux, France', 6000, 1], +] %} + + + + + + {% if number == 'lettre' %} + AFPY - Lettre + {% else %} + AFPy − {{ 'Devis' if quotation else 'Facture' }} n°{{ number }} + {% endif %} + + + + +
+
+ {%- block address_from -%} + Association Francophone Python + 2, rue Professeur Zimmermann + 69007 LYON + FRANCE + 504 398 355 00017 + {%- endblock address_from -%} +
+
+ {%- block address_to -%} + Python Software Foundation + 9450 SW Gemini Dr. + ECM# 90772 + Beaverton, OR 97008 + USA + {%- endblock address_to -%} +
+
+ + {% block content %} +
+
Date
+
{{ date }}
+
N° de {{ 'devis' if quotation else 'facture' }}
+
{{ number }}
+
+ + + {% set total = [0] %} + {% for designation, price, quantity in lines %} + {% if loop.first %} + + + + + + + + {% endif %} + + + + + + + + {{ total.append(quantity * price) or '' }} + + {% if loop.last %} + + + + + + {% endif %} + {% endfor %} +
DésignationPrix unitaireQuantitéTotal
{{ designation }}${{ price }} USD{{ quantity }}${{ quantity * price }} USD
Total T.T.C. à payer${{ total | sum }} USD
+ + + {% endblock content %} + + diff --git a/factures/2022/1233.pdf b/factures/2022/1233.pdf new file mode 100644 index 0000000..98181f5 Binary files /dev/null and b/factures/2022/1233.pdf differ