Add problem report for disabled clients/probes
This commit is contained in:
parent
840c146969
commit
fd7cd5cadd
5 changed files with 122 additions and 7 deletions
|
@ -0,0 +1,31 @@
|
|||
## -*- coding: utf-8; -*-
|
||||
<html>
|
||||
<body>
|
||||
<h1>Disabled Tempmon Probes</h1>
|
||||
<p>
|
||||
We checked if there were any offline temperature probes at your location.
|
||||
Someone wanted these deactivated at some point, but you should make sure it is
|
||||
okay that they still are. Here are the results:
|
||||
</p>
|
||||
|
||||
% if disabled_probes:
|
||||
<h3>Disabled Probes</h3>
|
||||
<ul>
|
||||
% for probe in disabled_probes:
|
||||
<li>${probe}</li>
|
||||
% endfor
|
||||
</ul>
|
||||
% endif
|
||||
|
||||
% if disabled_clients:
|
||||
<h3>Disabled Clients</h3>
|
||||
<ul>
|
||||
% for client in disabled_clients:
|
||||
<li>${client}</li>
|
||||
% endfor
|
||||
</ul>
|
||||
% endif
|
||||
|
||||
<p>Please contact the Tech Department with any questions.</p>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue