21 lines
432 B
HTML
21 lines
432 B
HTML
{% include 'partials/notify.html' %}
|
|
<h1 class="title">Live information</h1>
|
|
<table class="table is-fullwidth is-hoverable">
|
|
<thead>
|
|
<th>attribute</th>
|
|
<th>value</th>
|
|
</thead>
|
|
<tbody>
|
|
{% for key, item in items.items %}
|
|
<tr>
|
|
<th>{{ key }}</th>
|
|
<td>
|
|
{% if item is not None %}
|
|
{{ item }}
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|