diff --git a/templates/trip/list.html b/templates/trip/list.html
index 5db622d..14f829d 100644
--- a/templates/trip/list.html
+++ b/templates/trip/list.html
@@ -84,7 +84,11 @@
{% endfor %}
{% if end %}
-
Dates: {{ display_date_no_year(trip.start) }} to {{ display_date_no_year(end) }}
+ Dates: {{ display_date_no_year(trip.start) }} to {{ display_date_no_year(end) }}
+ {% if g.user.is_authenticated and trip.start <= today %}
+
photos
+ {% endif %}
+
{% else %}
Start: {{ display_date_no_year(trip.start) }} (end date missing)
{% endif %}
@@ -107,7 +111,13 @@
{{ conference_list(trip) }}
{% for day, elements in trip.elements_grouped_by_day() %}
- {{ display_date_no_year(day) }}
+ {{ display_date_no_year(day) }}
+ {% if g.user.is_authenticated and day <= today %}
+
+ photos
+
+ {% endif %}
+
{% set accommodation_label = {"check-in": "check-in from", "check-out": "check-out by"} %}
{% for e in elements %}
{% if e.element_type in accommodation_label %}