blob: 54bfff7bfa14df80ca3edc77f6870e938138a0a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
- if @grouped_alerts.length > 0
%form#alerts{:method => :post, :action => '/alerts/acknowledge'}
= partial('alerts_table')
%h2 Actions
%p= partial('acknowledge_input')
- else
.notice#alerts_table
%p No alerts to display.
:javascript
// Do the magic updates..
setInterval("updateAlertsTable('#{@alert_type}','#{@group_by}');", 30000)
|