From 713e384de76e0df4b578856566d59aeae4ebf25e Mon Sep 17 00:00:00 2001
From: Felix Eckhofer <felix@eckhofer.com>
Date: Thu, 19 Dec 2024 08:15:51 +0100
Subject: [PATCH] Fix incomplete date format

---
 app/views/conferences/stats.html.erb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/views/conferences/stats.html.erb b/app/views/conferences/stats.html.erb
index 0cf77bc..8465f00 100644
--- a/app/views/conferences/stats.html.erb
+++ b/app/views/conferences/stats.html.erb
@@ -13,7 +13,7 @@
       <li><%= @day_stats.keys.count %> days
         <ul>
           <% @day_stats.each do |day, stats| %>
-            <li><%= day.strftime('%a %b, %Y') %>:
+            <li><%= day.strftime('%a %b %d, %Y') %>:
               <%= stats[:starts_at].strftime('%H:%M') %>&ndash;<%= stats[:ends_at].strftime('%H:%M') %>,
               <%= stats[:wall_clock_time_min].round %> minutes wall clock time (<%= (stats[:wall_clock_time_min] / 60.0).round(2) %> hours),
               <%= stats[:scheduled_time_min].round %> minutes scheduled (<%= (stats[:scheduled_time_min] / 60.0).round(2) %> hours) in <%= stats[:sessions_count] %> sessions
-- 
GitLab