mirror of
https://github.com/pretix/pretix.git
synced 2026-05-09 15:54:03 +00:00
Do not show end time if not set
This commit is contained in:
@@ -167,7 +167,7 @@
|
|||||||
{% blocktrans trimmed with time=ev.date_from|date:"TIME_FORMAT" %}
|
{% blocktrans trimmed with time=ev.date_from|date:"TIME_FORMAT" %}
|
||||||
Begin: {{ time }}
|
Begin: {{ time }}
|
||||||
{% endblocktrans %}
|
{% endblocktrans %}
|
||||||
{% if event.settings.show_date_to %}
|
{% if event.settings.show_date_to and ev.date_to %}
|
||||||
<br>
|
<br>
|
||||||
{% blocktrans trimmed with time=ev.date_to|date:"TIME_FORMAT" %}
|
{% blocktrans trimmed with time=ev.date_to|date:"TIME_FORMAT" %}
|
||||||
End: {{ time }}
|
End: {{ time }}
|
||||||
|
|||||||
Reference in New Issue
Block a user