diff options
Diffstat (limited to 'views')
-rw-r--r-- | views/_events_calendar_day.haml | 6 | ||||
-rw-r--r-- | views/_history.haml | 2 |
2 files changed, 4 insertions, 4 deletions
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 diff --git a/views/_history.haml b/views/_history.haml index cfeec51..400c1c3 100644 --- a/views/_history.haml +++ b/views/_history.haml @@ -14,4 +14,4 @@ = history.event - if history.user = "by #{history.user}" - - @today = history.created_at + - @today = Date.new(history.created_at.year, history.created_at.month, history.created_at.day) |