SLA and Service Directory code added
[unfold.git] / sla / templates / violations.html
1 <div class="col-md-6" id="violations" style="align:right;">
2
3     <table class="table table-hover">
4         <tr>
5             <th>#</th>
6             <th>Date</th>
7             <th>Actual value</th>
8         </tr>
9
10         {% for v in violations %}
11         <tr>
12             <td>{{forloop.counter}}</td>
13             <td>{{v.datetime}}</td>
14             <td>{{ v.actual_value|floatformat:"0" }}</td>
15         </tr>
16         {% empty %}
17         <tr><td colspan="3">No violations</td></tr>
18         {% endfor %}
19     </table>
20 </div>
21 <div>
22 <a class="btn btn-default btn-back">Close</a>
23 </div>