From 32430915e15e403114fea8e15e76f16b275bad7d Mon Sep 17 00:00:00 2001 From: Ole Laursen Date: Thu, 2 Aug 2012 21:47:19 +0000 Subject: [PATCH] Fix missing group variable in template context (regression introduced with generalization of WG strings) - Legacy-Id: 4751 --- ietf/wgcharter/mails.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ietf/wgcharter/mails.py b/ietf/wgcharter/mails.py index e48ed0841..29c603b4e 100644 --- a/ietf/wgcharter/mails.py +++ b/ietf/wgcharter/mails.py @@ -32,6 +32,7 @@ def email_secretariat(request, group, type, text): send_mail(request, to, None, subject, "wgcharter/email_secretariat.txt", dict(text=text, + group=group, group_url=settings.IDTRACKER_BASE_URL + urlreverse('wg_charter', kwargs=dict(acronym=group.acronym)), charter_url=settings.IDTRACKER_BASE_URL + urlreverse('doc_view', kwargs=dict(name=group.charter.name)), )