From 4445a0d327cfee3e72bf77ef4236c6a9970f77d9 Mon Sep 17 00:00:00 2001 From: Michael Hall Date: Mon, 30 Apr 2018 09:07:30 -0400 Subject: [PATCH] Fix event reminder emails missing location name --- get_together/templates/get_together/emails/reminder.html | 2 +- get_together/templates/get_together/emails/reminder.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/get_together/templates/get_together/emails/reminder.html b/get_together/templates/get_together/emails/reminder.html index 6a3cea8..9f82211 100644 --- a/get_together/templates/get_together/emails/reminder.html +++ b/get_together/templates/get_together/emails/reminder.html @@ -8,7 +8,7 @@

Name: {{ event.name|striptags }}
Time: {{event.local_start_time}}
-Location: {{ event.location|striptags }}
+Location: {{ event.place|striptags }}

Go to the event page.

diff --git a/get_together/templates/get_together/emails/reminder.txt b/get_together/templates/get_together/emails/reminder.txt index 4ac40ea..d4a3bf2 100644 --- a/get_together/templates/get_together/emails/reminder.txt +++ b/get_together/templates/get_together/emails/reminder.txt @@ -5,7 +5,7 @@ You have an event coming up! Name: {{ event.name|striptags }} Time: {{event.local_start_time}} -Location: {{ event.location|striptags }} +Location: {{ event.place|striptags }} Event page: {{event.get_full_url}} {% endblock %}