Add problem report for disabled clients/probes

This commit is contained in:
Lance Edgar 2017-11-18 22:12:40 -06:00
parent 840c146969
commit fd7cd5cadd
5 changed files with 122 additions and 7 deletions

View file

@ -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.&nbsp;
Someone wanted these deactivated at some point, but you should make sure it is
okay that they still are.&nbsp; 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>