neptune/core/templates/ui/insights/meta.html

20 lines
527 B
HTML
Raw Normal View History

<div id="meta">
<div class="content" style="max-height: 30em; overflow: auto;">
2022-07-21 12:52:41 +00:00
<div class="table-container">
2022-07-21 12:53:02 +00:00
{% for key,items in meta.items %}
<th><strong>{{ key }}</strong></th>
<table class="table is-fullwidth is-hoverable">
2022-07-21 12:52:41 +00:00
<tbody>
2022-07-21 12:53:02 +00:00
{% for item in items %}
2022-07-21 12:52:41 +00:00
<tr>
<td>
2022-07-21 12:53:02 +00:00
{{ item }}
2022-07-21 12:52:41 +00:00
</td>
</tr>
2022-07-21 12:53:02 +00:00
{% endfor %}
2022-07-21 12:52:41 +00:00
</tbody>
</table>
{% endfor %}
</div>
</div>
</div>