diff --git a/templates/trip_page.html b/templates/trip_page.html
index 4b907ec..114fd88 100644
--- a/templates/trip_page.html
+++ b/templates/trip_page.html
@@ -59,22 +59,17 @@
{% else %}
Start: {{ display_date_no_year(trip.start) }} (end date missing)
{% endif %}
+
- {% for conf in trip.conferences %}
- {{ conference_row(conf, "going") }}
- {% endfor %}
+ {% for conf in trip.conferences %} {{ conference_row(conf, "going") }} {% endfor %}
- {% for conf in trip.accommodation %}
- {{ accommodation_row(conf, "going") }}
- {% endfor %}
+ {% for conf in trip.accommodation %} {{ accommodation_row(conf, "going") }} {% endfor %}
- {% for item in trip.travel %}
- {{ row[item.type](item) }}
- {% endfor %}
+ {% for item in trip.travel %} {{ row[item.type](item) }} {% endfor %}