database change link to end of project mail added
This commit is contained in:
parent
f2d209688b
commit
2bb8ee517d
|
@ -31,6 +31,8 @@ class Command(BaseCommand):
|
|||
mail_template = get_template('input/if_end_of_project.txt')
|
||||
for project in old:
|
||||
context = {'project': project}
|
||||
context['URLPREFIX'] = URLPREFIX
|
||||
print(context)
|
||||
try:
|
||||
send_mail('Projektende erreicht',
|
||||
mail_template.render(context),
|
||||
|
@ -40,5 +42,4 @@ class Command(BaseCommand):
|
|||
except BadHeaderError:
|
||||
return HttpResponse('Invalid header found.')
|
||||
|
||||
|
||||
self.stdout.write(self.style.SUCCESS('sendmails custom command executed'))
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
Hallo Team Ideenförderung!
|
||||
|
||||
Das Project {{project.name}} hat am {{project.end}} sein vorraussichtliches Ende erreicht.
|
||||
Das Project {{project.name}} hat am {{project.end}} sein vorraussichtliches
|
||||
Ende erreicht.
|
||||
|
||||
Hier könnt ihr es in der Datenbank editieren:
|
||||
|
||||
INSERT LINK here ID: {{project.pid}}
|
||||
{{URLPREFIX}}/admin/input/project/{{project.pk}}/change
|
||||
|
||||
mit freundlichen Grüßen, Eure Lieblingsdatenbank
|
||||
|
|
Loading…
Reference in New Issue