Ajout facture rectificative pour Mozilla & template

This commit is contained in:
Pierre Bousquié 2023-01-26 16:25:29 +01:00
parent c780e1dc62
commit 648a81f4f7
Signed by: Krilivye
GPG Key ID: BD7979AE2D2BFDBA
3 changed files with 21 additions and 0 deletions

View File

@ -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 %}

BIN
factures/2023/1238.pdf Normal file

Binary file not shown.

View File

@ -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 %}
<!DOCTYPE html>
@ -63,6 +65,10 @@
<dt>{{ number_string }}</dt>
<dd>{{ number }}</dd>
</dl>
{% if additional_infos %}
<h1>{{additional_infos_string }}</h1>
<p>{{ additional_infos }}</p>
{% endif %}
<table>
{% set total = [0] %}