forked from chainsaw_mcginny/RoosterReWrite
3 changed files with 37 additions and 0 deletions
@ -0,0 +1,29 @@ |
|||
{% extends "base.html" %} |
|||
|
|||
{% block content %} |
|||
<p>We have <span class="badge">{{ killwatches|length }}</span> killwatches. |
|||
|
|||
<table class="table table-bordered table-striped"> |
|||
<thead> |
|||
<tr> |
|||
<th scope="col">Channel</th> |
|||
<th scope="col">Entity Name</th> |
|||
<th scope="col">Entity Id</th> |
|||
<th scope="col">Value</th> |
|||
<th scope="col">Scope</th> |
|||
</tr> |
|||
</thead> |
|||
<tbody> |
|||
{% for killwatch in killwatches %} |
|||
<tr> |
|||
<td>{{ killwatches[killwatch].channel }}</td> |
|||
<td>{{ killwatches[killwatch].name }}</td> |
|||
<td>{{ killwatches[killwatch].id }}</td> |
|||
<td>{{ killwatches[killwatch].value }}</td> |
|||
<td>{{ killwatches[killwatch].scope }}</td> |
|||
</tr> |
|||
{% endfor %} |
|||
</tbody> |
|||
</table> |
|||
|
|||
{% endblock %} |
Loading…
Reference in new issue