diff --git a/event/templates/event/activity_summary.html b/event/templates/event/activity_summary.html
index 1996255..1513a7f 100644
--- a/event/templates/event/activity_summary.html
+++ b/event/templates/event/activity_summary.html
@@ -4,11 +4,13 @@
- {% if activity.places.all %}
- {{ activity.places.all |join:", "}}
+ {% with activity|get_herited:'places' as places %}
+ {% if places.all %}
+ {{ places.all |join:", "}}
{% else %}
-
{% endif %}
+ {% endwith %}
|
public
@@ -36,11 +38,13 @@
|
- {% if activity.tags.all %}
- {{ activity.tags.all |join:", "}}
+ {% with activity|get_herited:'tags' as tags %}
+ {% if tags.all %}
+ {{ tags.all |join:", "}}
{% else %}
-
{% endif %}
+ {% endwith %}
|
{% if has_perm %}
|