From ff17da300f361425f0e22ccd9066cb6577aa10ee Mon Sep 17 00:00:00 2001 From: Patrick J Cherry Date: Tue, 4 Dec 2012 09:10:03 +0000 Subject: Fixed event views to use dates, and to miss queries for days with no events. --- views/_events_calendar_day.haml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'views/_events_calendar_day.haml') diff --git a/views/_events_calendar_day.haml b/views/_events_calendar_day.haml index fa0c517..712559c 100644 --- a/views/_events_calendar_day.haml +++ b/views/_events_calendar_day.haml @@ -1,8 +1,8 @@ %td{:class => (@today.month % 2 == 0 ? "even" : "odd")} %p.event_date %a{:href => "/events/list/#{@today.strftime("%F")}?#{request.query_string}"} - = @today.strftime(((@today - 1).month != @today.month) ? "%d %b" : "%d") - =partial("history", :collection => events_calendar_day.last(10).to_a.reverse) + = @today.strftime((@today.day == 1) ? "%d %b" : "%d") + =partial("history", :collection => events_calendar_day.last(10).alerts.to_a.reverse) %p - n_events = events_calendar_day.count - if n_events > 10 @@ -12,4 +12,4 @@ - if n_events > 0 %a{:href => "/events/list/#{@today.strftime("%F")}?#{request.query_string}"} Show the whole day. - - @today += 1 +- @today = @today + 1 -- cgit v1.2.1