Browse Source

write surveymail_date in sendmails command

master
Benni Baermann 3 years ago
parent
commit
ea2c6f6f20
2 changed files with 1 additions and 4 deletions
  1. +0
    -4
      TODO
  2. +1
    -0
      input/management/commands/sendmails.py

+ 0
- 4
TODO View File

@ -12,7 +12,3 @@ other known problems:
- The DatePicker works only if you are logged in, which is mostly ok for /intern
and there is no Date to insert at the moment in forms for externs.
missing features:
- every modell should store the date when the surveymail was actually send.

+ 1
- 0
input/management/commands/sendmails.py View File

@ -84,6 +84,7 @@ class Command(BaseCommand):
name=myname,
realname=item.realname)
item.survey_mail_send = True
item.survey_mail_date = date.today()
item.save()
self.stdout.write(self.style.SUCCESS(f'surveymails for object type {type} sent'))

Loading…
Cancel
Save