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

20 lines
697 B
HTML
Raw Normal View History

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