Fix event reminder emails missing location name
This commit is contained in:
parent
7f0a4abb04
commit
4445a0d327
2 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
|||
<p>
|
||||
<strong>Name</strong>: {{ event.name|striptags }}<br>
|
||||
<strong>Time</strong>: {{event.local_start_time}}<br>
|
||||
<strong>Location</strong>: {{ event.location|striptags }}<br>
|
||||
<strong>Location</strong>: {{ event.place|striptags }}<br>
|
||||
<br>
|
||||
<a href="{{event.get_full_url}}" title="{{ event.name|striptags }} page.">Go to the event page.</a>
|
||||
</p>
|
||||
|
|
|
@ -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 %}
|
||||
|
|
Loading…
Reference in a new issue