feta/view/index.html
sneak 06df947186
Some checks failed
continuous-integration/drone/push Build is failing
major overhaul, including:
* builds with echo now instead of gin
* beginning of web UI
* factor out util functions
2020-03-30 16:05:53 -07:00

30 lines
423 B
HTML

{% extends "page.html" %}
{% block content %}
<div class="col-lg-12">
<h2>indexer stats</h2>
<table class="table table-striped table-hover">
<thead class="thead-dark">
<tr>
<th scope="col">Key</th>
<th scope="col">Value</th>
</tr>
</thead>
<tbody>
{% for stat in stats %}
<tr>
{{stat.key}}
</tr>
<tr>
{{stat.value}}
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}