blob: 8968249f77390c7119a0a0b9f421e658c91888ac (
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..
setTimeout("updateAlertsTable('#{@alert_type}','#{@group_by}');", 30000)
|