39 lines
798 B
HTML
39 lines
798 B
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 live_info.items %}
|
||
|
<tr>
|
||
|
<th>{{ key }}</th>
|
||
|
<td>
|
||
|
{% if item is not None %}
|
||
|
{{ item }}
|
||
|
{% endif %}
|
||
|
</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|
||
|
<h1 class="title">Stored information</h1>
|
||
|
<table class="table is-fullwidth is-hoverable">
|
||
|
<thead>
|
||
|
<th>attribute</th>
|
||
|
<th>value</th>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for key, item in db_info.items %}
|
||
|
<tr>
|
||
|
<th>{{ key }}</th>
|
||
|
<td>
|
||
|
{% if item is not None %}
|
||
|
{{ item }}
|
||
|
{% endif %}
|
||
|
</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|