BUGFIX: more wrong names in surveymails

This commit is contained in:
Benni Bärmann 2021-03-17 13:54:11 +01:00
rodič be72261f5d
revize d39fb2c87a
1 změnil soubory, kde provedl 2 přidání a 2 odebrání

Zobrazit soubor

@ -104,7 +104,7 @@ class Command(BaseCommand):
supported = HonoraryCertificate.objects.filter(granted=True)\
.filter(granted_date__lt = date.today() - timedelta(days=14))\
.exclude(survey_mail_send=True)
self.surveymails_to_object(supported, type='HON', name='request_url')
self.surveymails_to_object(supported, type='HON', name='project')
def surveymails_to_ifg(self):
'''get all IFG objects which where granted two weeks ago'''
@ -127,7 +127,7 @@ class Command(BaseCommand):
supported = Project.objects.filter(granted=True)\
.filter(end__lt = date.today() - timedelta(days=28))\
.exclude(survey_mail_send=True)
self.surveymails_to_object(supported, type='PRO', name='realname')
self.surveymails_to_object(supported, type='PRO', name='name')
def surveymails_to_travel(self):
'''send survey link 3 weeks after end of project reached'''