fixed bug which leeds to mails not be sent
This commit is contained in:
parent
f870fcab08
commit
276acec502
|
@ -76,7 +76,7 @@ class Command(BaseCommand):
|
|||
if type == 'LIB':
|
||||
mytype = item.type
|
||||
elif type not in ('MAIL','VIS','LIST'):
|
||||
myname = item.name
|
||||
myname = getattr(item, name, 'ERROR: NONAME')
|
||||
print(f'name gefunden: {myname}')
|
||||
self.survey_link(email=item.email,
|
||||
type=mytype,
|
||||
|
|
|
@ -10,7 +10,7 @@ Du hast von uns eine Bescheinigung ({{name}}) erhalten.
|
|||
Du hast von uns ein Bibliotheksstipendium für {{name}} erhalten.
|
||||
{% elif type == 'ELIT' %}
|
||||
Du hast von uns ein eLiteraturstipendium für {{name}} erhalten.
|
||||
{% elif type == 'IFG'}
|
||||
{% elif type == 'IFG' %}
|
||||
Wir haben Dich bei einer IFG-Anfrage unterstützt: {{name}}
|
||||
{% elif type == 'LIT' %}
|
||||
Du hast von uns ein Literaturstipendium für {{name}} erhalten.
|
||||
|
|
Loading…
Reference in New Issue