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 -%}
|
|