blob: 6c323b037b41b5fc166a2ec973e71a7e27e80c6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head><title></title></head><body>
<p><strong><%= alert.update_type.upcase %>:</strong> <%
case alert.update_type
when :cleared
%><%= alert.cleared_at.to_s_relative %><%
when :acknowleged
%><%= alert.acknowledged_at.to_s_relative %><%
else
%><%= alert.raised_at.to_s_relative %><%
end
%>: <%= alert.summary %><%
if alert.source != alert.subject
%> -- <em>from <%= alert.source %></em><%
end
%>.</p>
<hr />
<h2>Detail</h2>
<div><%=alert.detail %></div>
<hr />
<address>--<br />Love mauve<br />xxx.</address></body></html>
|