blob: 3bb25c31e1564783b31bd241374bf6ebd85a5099 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
%tr{:class => %w(detail) + row_class, :id => ["tr", "detail", alert.id] }
%td
%td{:colspan => 2}
.detail
:textile
#{alert.detail}
%address
- if alert.raised? or alert.acknowledged?
Raised at #{(alert.raised_at || Time.now).to_s_human} •
- if alert.acknowledged?
Ack'd at #{alert.acknowledged_at.to_s_human} by #{alert.acknowledged_by} •
Source: #{alert.source} •
%a{ :href => "/alert/#{alert.id}" } More details
•
%a{ :href => "#", :onclick => "$('#tr_detail_#{alert.id}').hide(); return false;"} Hide details
|