blob: 03d02d7ac85fd4bff7b078c4418d2bd90fd75c0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
- if @today.nil? or %w(day month year).any?{|s| @today.send(s) != history.created_at.send(s)}
%h2
= history.created_at.strftime("%a %d %b %Y")
%p
= history.created_at.strftime("%R")
- history.alerts.each do |alert|
%a{ :href => url_for(alert) }
= alert.id
%strong
= alert.subject
= alert.summary
- if alert.source != alert.subject
= "-- from #{alert.source}
= history.event
- @today = history.created_at
|