From 1fff1f136dd72ab42e1c7fa53044fc55e6d92b94 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Sat, 14 Mar 2026 12:00:18 +0000 Subject: [PATCH] Show day of week in conference date column MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add %a prefix: "Wed 25 Mar 2026", "Wed 25–28 Mar 2026", etc. Co-Authored-By: Claude Sonnet 4.6 --- templates/conference_list.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/conference_list.html b/templates/conference_list.html index c834f4b..4e49074 100644 --- a/templates/conference_list.html +++ b/templates/conference_list.html @@ -148,11 +148,11 @@ tr.conf-hl > td { {%- if item.start_date == item.end_date -%} - {{ item.start_date.strftime("%-d %b %Y") }} + {{ item.start_date.strftime("%a %-d %b %Y") }} {%- elif item.start_date.year == item.end_date.year and item.start_date.month == item.end_date.month -%} - {{ item.start_date.strftime("%-d") }}–{{ item.end_date.strftime("%-d %b %Y") }} + {{ item.start_date.strftime("%a %-d") }}–{{ item.end_date.strftime("%-d %b %Y") }} {%- else -%} - {{ item.start_date.strftime("%-d %b") }}–{{ item.end_date.strftime("%-d %b %Y") }} + {{ item.start_date.strftime("%a %-d %b") }}–{{ item.end_date.strftime("%-d %b %Y") }} {%- endif -%}