diff --git a/fet2020/templates/posts/show.html b/fet2020/templates/posts/show.html
index a0943464..d045bca7 100644
--- a/fet2020/templates/posts/show.html
+++ b/fet2020/templates/posts/show.html
@@ -116,19 +116,23 @@
Event-Ende: {{ post.event_end|date }} um {{ post.event_end|time }} Uhr
+ {% if post.event_place %}
Event-Ort: {{ post.event_place }}
+ {% endif %}
Event-Start: {{ post.event_start|date }} um {{ post.event_start|time }} Uhr
Event-Ende: {{ post.event_end|date }} um {{ post.event_end|time }} Uhr
- Event-Ort: {{ post.event_place }}
+ {% if post.event_place %}
+ Event-Ort: {{ post.event_place }}
+ {% endif %}
{% endif %}
@@ -165,7 +169,9 @@
- Start: {{ post.event_start|date }} um {{ post.event_start|time }} Uhr
- Ende: {{ post.event_end|date }} um {{ post.event_end|time }} Uhr
- - Ort: {{ post.event_place }}
+ {% if post.event_place %}
+ - Ort: {{ post.event_place }}
+ {% endif %}
{% endif %}