diff --git a/templates/macros.html b/templates/macros.html index 112f1f5..c774901 100644 --- a/templates/macros.html +++ b/templates/macros.html @@ -365,6 +365,9 @@ https://www.flightradar24.com/data/flights/{{ flight.airline_detail.iata | lower {{ item.name }} {{ display_conf_date_no_year(item.attend_start if item.attend_start else item.start) }} to {{ display_conf_date_no_year(item.attend_end if item.attend_end else item.end) }} + {% if item.attend_start or item.attend_end %} + (full conference: {{ display_date_no_year(item.start) }} to {{ display_date_no_year(item.end) }}) + {% endif %}

diff --git a/templates/trip_page.html b/templates/trip_page.html index 9cf13b4..356beef 100644 --- a/templates/trip_page.html +++ b/templates/trip_page.html @@ -160,6 +160,9 @@ {{ item.name }} {{ display_conf_date_no_year(item.attend_start if item.attend_start else item.start) }} to {{ display_conf_date_no_year(item.attend_end if item.attend_end else item.end) }} + {% if item.attend_start or item.attend_end %} + (full conference: {{ display_date_no_year(item.start) }} to {{ display_date_no_year(item.end) }}) + {% endif %}