aboutsummaryrefslogtreecommitdiff
path: root/views/_alerts_table_alert_detail.haml
diff options
context:
space:
mode:
Diffstat (limited to 'views/_alerts_table_alert_detail.haml')
-rw-r--r--views/_alerts_table_alert_detail.haml14
1 files changed, 14 insertions, 0 deletions
diff --git a/views/_alerts_table_alert_detail.haml b/views/_alerts_table_alert_detail.haml
new file mode 100644
index 0000000..73185c6
--- /dev/null
+++ b/views/_alerts_table_alert_detail.haml
@@ -0,0 +1,14 @@
+%tr{:class => %w(detail) + row_class, :id => ["tr", "detail", alert.id] }
+ %td  
+ %td{:colspan => 2}
+ .detail
+ = alert.detail
+ %address
+ - if alert.raised? or alert.acknowledged?
+ Raised at #{alert.raised_at.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