From 11ed8b6afe01015e380f840eb2448a6a336b89c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Kervella?= Date: Wed, 11 Apr 2018 18:40:59 +0000 Subject: [PATCH] Fix trailing 'e' --- cotisations/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cotisations/views.py b/cotisations/views.py index 517644b0..5ac27fae 100644 --- a/cotisations/views.py +++ b/cotisations/views.py @@ -253,7 +253,7 @@ def facture_pdf(request, facture, factureid): facture.user.name, facture.user.surname ), - 'addresse': facture.user.room, + 'address': facture.user.room, 'article': purchases, 'total': facture.prix_total(), 'asso_name': AssoOption.get_cached_value('name'),