if mail template finished

This commit is contained in:
Benni Bärmann 2020-10-28 10:28:56 +01:00
parent c7bde110a7
commit 4edfd4f3c5
2 changed files with 10 additions and 50 deletions

View File

@ -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:
<!DOCTYPE html>
<html>
<head>
<base target="_top">
</head>
<body>
<p>Hallo Team Ideenförderung,</p>
<p><?= getValue('Benutzer-/-innenname'); ?> (<?= getValue('Realname'); ?>, <?= getValue('E-Mail-Adresse'); ?>) fragt ein Literaturstipendium an:</p>
<p><?= getValue('Benutzer-/-innenname'); ?> hätte gerne <strong>»<?= getValue('Informationen zum Werk'); ?>«</strong> von
<?= getValue('Bezugsquelle'); ?> (Kosten voraussichtlich: <?= getValue('Kosten'); ?>&nbsp;€).
<?= ('' != getValue('Anmerkungen')) ? 'Weitere Anmerkungen: '+getValue('Anmerkungen') : ''; ?>
<p>Viele Grüße<br /><?= id ?><br /><span style="font-size:80%">im Auftrag des Teams Ideenförderung</span></p>
</body>
</html>
{% endcomment %}

View File

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