diff options
author | Alban Gruin | 2017-02-13 19:39:41 +0100 |
---|---|---|
committer | Alban Gruin | 2017-02-13 19:39:41 +0100 |
commit | de405f2212fa64ad2a6a11f6d18186571021ad8c (patch) | |
tree | d5cc35ff2d96219809eafa15ee08e9ce0238c60d /management | |
parent | d91081d8539988aaca426022c3f28ad78a024bea (diff) |
Regroupement des deux mails d'emploi du temps dans une seule template, c'est plus propre
Diffstat (limited to 'management')
-rw-r--r-- | management/commands/sendmails.py | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/management/commands/sendmails.py b/management/commands/sendmails.py index e30bb1b..9a05a9c 100644 --- a/management/commands/sendmails.py +++ b/management/commands/sendmails.py @@ -40,7 +40,6 @@ class Command(BaseCommand): mails = [] footer = loader.get_template("mail/mail_footer.txt") - no_event = loader.get_template("mail/mail_noevent.txt") timetable = loader.get_template("mail/mail_timetable.txt") print("Generating messages...") @@ -48,13 +47,9 @@ class Command(BaseCommand): if subscription.group.id not in content: courses = Course.objects.get_courses_for_group(subscription.group, begin__gte=start, begin__lt=end) - if len(courses) > 0: - grouped_courses = group_courses(courses) - context = Context({"courses": grouped_courses, "week": week}) - content[subscription.group.id] = timetable.render(context) - else: - context = Context({"group": subscription.group, "week": week}) - content[subscription.group.id] = no_event.render(context) + grouped_courses = group_courses(courses) + context = Context({"courses": grouped_courses, "group": subscription.group, "week": week}) + content[subscription.group.id] = timetable.render(context) context = Context({"admins": settings.ADMINS, "token": subscription.token, "domain": settings.DEFAULT_DOMAIN}) mail_content = content[subscription.group.id] + footer.render(context) |