<%= title("Alarm - #{@alarm.id}") %>
Alarm
<%=h @alarm.id %>
<%=h @alarm.created_at %>
<%=h @alarm.alarm_level %>: <%= @alarm.alarm_level_name %>
<%= fobj(@alarm.sentinel) %> <% if @sentinel = @alarm.sentinel %>
<%=h @sentinel.description %> <% end %>
<% @sentinel.alarms.reject {|a| a.acknowledge}.each {|a| %> <%=h a.created_at %>: <%= fobj(a) %>
<% } %>
Comment
<%=h @alarm.comment %>
<%=h @alarm.process_state %>
Data
<%=h @alarm.text rescue $! %>
<%= link_to "#{@alarm.sentinel.view.table_name} WHERE #{@alarm.conditions}", :controller => "survey", :action => :list, :table => @alarm.sentinel.view.table_name, :default_filter => @alarm.conditions %>
<%=h @alarm.log %>
<%=h @alarm.path %>
<%= fobj(@alarm.report) %>
<%= button_to "Edit", :action => :edit, :id => @alarm %><%= button_to "List all", :action => :list %> <% form_tag :action => :send_to_email, :id => @alarm do %> Send to alarm notification to email: <%= text_field_tag 'addresses' %> <%= submit_tag "Send" %> <% end %>