aboutsummaryrefslogtreecommitdiff
path: root/views/_alerts_table_alert_summary.haml
blob: 58e3eea85aab3a176fd916c6e85db60ceef73e08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- alert = alerts_table_alert_summary if defined? alerts_table_alert_summary
- row_class = (row_class || []) + [ cycle(nil, "hilight"), alert.raised? && "raised", alert.acknowledged? && "acknowledged", alert.level]
%tr{ :class => row_class, :id => ["tr", "summary", alert.id] }
  %td
    %input{ :type => "checkbox", :id => "alerts[#{alert.id}]", :name => "alerts[#{alert.id}]", :class => 'alert' }
  %td
    %label{ :for => "alerts[#{alert.id}]" }
      %strong= alert.subject
      = alert.summary
    - if alert.suppressed?
      (suppressed)
    %a{ :id => ["a","detail", alert.id], | 
        :href => "/alert/#{alert.id}",   |
        :onclick => "fetchDetail('#{alert.id}'); return false;"} 
      Details ↓
  %td= (alert.raised_at || alert.cleared_at || Time.now).to_s_relative