From 4edfd4f3c52fef0f2888261d1cd24c0c87801310 Mon Sep 17 00:00:00 2001 From: Benni Baermann Date: Wed, 28 Oct 2020 10:28:56 +0100 Subject: [PATCH] if mail template finished --- input/templates/input/if_mail.txt | 59 +++++-------------------------- input/views.py | 1 + 2 files changed, 10 insertions(+), 50 deletions(-) diff --git a/input/templates/input/if_mail.txt b/input/templates/input/if_mail.txt index d51ee08..4420811 100644 --- a/input/templates/input/if_mail.txt +++ b/input/templates/input/if_mail.txt @@ -2,38 +2,23 @@ Hallo Team Ideenförderung, es gab einen neuen Antrag von {{data.realname}}. -Der Nutzer mit dem Username {{data.username}} ({{data.email}}) fragt ein(e){% if data.choice == 'LIT' %} Literaturstipendium -{% elif data.choice == 'BIB' %} Bibliotheksstipendium -{% elif data.choice == 'IFG' %} IFG-Förderung -{% elif data.choice == 'ELIT' %} eLiteraturstipendium -{% elif data.choice == 'SOFT' %} Softwarestipendium -{% elif data.choice == 'VIS' %} Visitenkarten -{% elif data.choice == 'MAIL' %} Mailadresse -{% elif data.choice == 'LIST' %} Mailingliste {% else %} ERROR UNKNOWN FORMTYPE {% endif %} an. +Der Nutzer mit dem Username {{data.username}} ({{data.email}}) fragt ein_e {{data.typestring}} an. {% if data.choice in data.grant %} Vorraussichtliche Kosten: {{data.cost}} -Anmerkungen: {{data.notes}} -{% endif %} {% if data.choice in data.domain %} +Anmerkungen: {{data.notes}} {% endif %} {% if data.choice in data.domain %} Domain: {{data.domain}} -Adressenbestandteil: {{data.address}} -{% endif %} {% if data.choice == 'BIB' %} +Adressenbestandteil: {{data.address}} {% endif %} {% if data.choice == 'BIB' %} Bibliothek: {{data.library}} -Dauer: {{data.duration}} -{% elif data.choice == 'ELIT' %} +Dauer: {{data.duration}} {% elif data.choice == 'ELIT' %} Datenbank: {{data.library}} -Dauer: {{data.duration}} -{% elif data.choice == 'SOFT' %} +Dauer: {{data.duration}} {% elif data.choice == 'SOFT' %} Software: {{data.library}} -Dauer: {{data.duration}} -{% elif data.choice == 'IFG'%} -Anfrage-URL: {{data.url}} -{% elif data.choice == 'LIT'%} +Dauer: {{data.duration}} {% elif data.choice == 'IFG'%} +Anfrage-URL: {{data.url}} {% elif data.choice == 'LIT'%} Info zum Werk: {{data.info}} -Bezugsquelle: {{data.source}} -{% elif data.choice == 'MAIL'%} -Adressenbestandteil frei gewählt: {{data.other}} -{% elif data.choice == 'VIS'%} +Bezugsquelle: {{data.source}} {% elif data.choice == 'MAIL'%} +Adressenbestandteil frei gewählt: {{data.other}} {% elif data.choice == 'VIS'%} Wikimedia-Projekt: {{data.project}} Persönliche Daten: {{data.data}} Variante: {{data.variant}} @@ -44,29 +29,3 @@ Zum Genehmigen hier klicken: {{data.urlprefix}}{% url 'authorize' data.choice da Zu Ablehnen hier klicken: {{data.urlprefix}}{% url 'deny' data.choice data.pk %} Stets zu Diensten, Deine Förderdatenbank - -{% comment %} - -vielleicht brauchen wir das hier https://gist.github.com/martinsvoboda/1bf965a8c6037c0fe1a88d89ea822df6 - - -alte mail: - - - - - - -

Hallo Team Ideenförderung,

- -

(, ) fragt ein Literaturstipendium an:

- -

hätte gerne »« von - (Kosten voraussichtlich:  €). - - - -

Viele Grüße

im Auftrag des Teams Ideenförderung

- - -{% endcomment %} diff --git a/input/views.py b/input/views.py index d960fc5..824a5b0 100644 --- a/input/views.py +++ b/input/views.py @@ -168,6 +168,7 @@ class ExternView(CookieWizardView): data['urlprefix'] = URLPREFIX data['grant'] = ('LIT', 'SOFT', 'ELIT', 'BIB', 'IFG') data['DOMAIN'] = ('MAIL', 'LIST') + data['typestring'] = TYPE_CHOICES[data['choice']] # we need to send the following mails here: context = { 'data': data }