BUGFIX: correct project name is used now in surveymail
This commit is contained in:
parent
9c23d8bddd
commit
f870fcab08
|
@ -76,7 +76,8 @@ class Command(BaseCommand):
|
|||
if type == 'LIB':
|
||||
mytype = item.type
|
||||
elif type not in ('MAIL','VIS','LIST'):
|
||||
myname = getattr(item,name)
|
||||
myname = item.name
|
||||
print(f'name gefunden: {myname}')
|
||||
self.survey_link(email=item.email,
|
||||
type=mytype,
|
||||
pid=f'{mytype}{item.pk}',
|
||||
|
|
|
@ -3,7 +3,7 @@ Hallo,
|
|||
Vor einiger Zeit durfte Wikimedia Deutschland Deine Aktivität für Freies Wissen
|
||||
unterstützen.
|
||||
{% if type == 'PRO' %}
|
||||
Deine Aktivitäten werden von uns unter dem Projekttitel {{name}} geführt.
|
||||
Deine Aktivitäten werden von uns unter dem Projekttitel "{{name}}" geführt.
|
||||
{% elif type == 'HON' %}
|
||||
Du hast von uns eine Bescheinigung ({{name}}) erhalten.
|
||||
{% elif type == 'BIB' %}
|
||||
|
|
Loading…
Reference in New Issue