mirror of
https://github.com/pretix/pretix.git
synced 2026-05-08 15:44:02 +00:00
Add event's location to order confirmation mail (Z#23185285) (#5341)
* Add event's location to order confirmation mail * make location oneline
This commit is contained in:
committed by
GitHub
parent
a6201c841f
commit
6f920e6bcd
@@ -60,13 +60,19 @@
|
|||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{ event.name }}
|
{{ event.name }}
|
||||||
{% if not event.has_subevents and event.settings.show_dates_on_frontpage %}
|
{% if not event.has_subevents %}
|
||||||
|
{% if event.settings.show_dates_on_frontpage %}
|
||||||
<br>
|
<br>
|
||||||
{{ event.get_date_range_display }}
|
{{ event.get_date_range_display }}
|
||||||
{% if event.settings.show_times %}
|
{% if event.settings.show_times %}
|
||||||
{{ event.date_from|date:"TIME_FORMAT" }}
|
{{ event.date_from|date:"TIME_FORMAT" }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if event.location %}
|
||||||
|
<br>
|
||||||
|
{{ event.location|oneline }}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
Reference in New Issue
Block a user