diff --git a/factures/2023/1238.html.jinja2 b/factures/2023/1238.html.jinja2 new file mode 100644 index 0000000..a311103 --- /dev/null +++ b/factures/2023/1238.html.jinja2 @@ -0,0 +1,15 @@ +{% extends '_layout.jinja2' %} + +{% set lines = [ + ['Soutien financier « Bronze » à PyConFr 2023', 500, 1], +] %} + +{% block address_to %} + Johan Lorenzo + 62 rue Duquesne + 69006 Lyon + Pour le compte de: + Mozilla Mz Denmark Aps France + 34 rue Laffitte + 75009 Paris +{% endblock address_to %} diff --git a/factures/2023/1238.pdf b/factures/2023/1238.pdf new file mode 100644 index 0000000..221ce58 Binary files /dev/null and b/factures/2023/1238.pdf differ diff --git a/factures/commun/_layout.jinja2 b/factures/commun/_layout.jinja2 index 4abab12..f520934 100644 --- a/factures/commun/_layout.jinja2 +++ b/factures/commun/_layout.jinja2 @@ -12,6 +12,7 @@ {% set quantity_string = 'Quantity' %} {% set total_string = 'Total' %} {% set total_to_pay_string = 'Total to pay' %} + {% set additional_infos_string ='Complementary Informations' %} {% else %} {% if number == 'lettre' %} {% set title = 'Lettre' %} @@ -26,6 +27,7 @@ {% set quantity_string = 'Quantité' %} {% set total_string = 'Total' %} {% set total_to_pay_string = 'Total à payer' %} + {% set additional_infos_string ='Informations additionnelles' %} {% endif %} @@ -63,6 +65,10 @@
{{ number_string }}
{{ number }}
+ {% if additional_infos %} +

{{additional_infos_string }}

+

{{ additional_infos }}

+ {% endif %} {% set total = [0] %}