From 7cced919a2b6f4fb21802b954e4fc95aa0f1a990 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Wed, 18 Feb 2026 18:23:33 +0000 Subject: [PATCH] Show full conference dates alongside partial attendance dates. When attend_start or attend_end is set, display the full conference date range in parentheses after the attended dates, e.g. "Wed 6 Mar to Sun 10 Mar (full conference: Sun 3 Mar to Sun 10 Mar)". Co-Authored-By: Claude Sonnet 4.6 --- templates/macros.html | 3 +++ templates/trip_page.html | 3 +++ 2 files changed, 6 insertions(+) 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 %}