diff options
author | Daniel Friesel <derf@finalrewind.org> | 2020-04-19 17:06:42 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2020-04-19 17:06:42 +0200 |
commit | ec83af252377bb337640aaa996c97f28167c5281 (patch) | |
tree | 5284af005607e8ecb90e9c5e86fb1775138ca2cf | |
parent | 94ea5a089f91fb51b60d9cf1f2f8d822c4f2b54b (diff) |
commute: show weekday name in journey list
-rw-r--r-- | templates/commute.html.ep | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/commute.html.ep b/templates/commute.html.ep index 476f6e7..d92089d 100644 --- a/templates/commute.html.ep +++ b/templates/commute.html.ep @@ -85,5 +85,5 @@ % for my $i (0 .. $#{$months}) { <h2><%= $months->[$i] %></h2> - %= include '_history_trains', date_format => '%d.%m.', journeys => $journeys_by_month->{$i+1} // [] + %= include '_history_trains', date_format => '%a %d.%m.', journeys => $journeys_by_month->{$i+1} // [] % } |