commit before applying 2p patch

This commit is contained in:
2020-04-04 18:16:37 -07:00
parent 4c33b5dd0e
commit 70faf517f3
8 changed files with 79 additions and 12 deletions

View File

@@ -9,17 +9,25 @@
<table class="table table-striped table-hover">
<thead class="thead-dark">
<tr>
<th scope="col">Key</th>
<th scope="col">Value</th>
<th scope="col">instance id</th>
<th scope="col">hostname</th>
<th scope="col">status</th>
<th scope="col">tootCount</th>
<th scope="col">Detail</th>
</tr>
</thead>
<tbody>
{% for stat in stats %}
{% for instance in instances %}
<tr>
{{stat.key}}
</tr>
<tr>
{{stat.value}}
<td><a href="/instance/{{instance.uuid}}">{{instance.uuid}}</a></td>
<td><a href="https://{{instance.hostname}}">{{instance.hostname}}</a></td>
<td>{{instance.status}}</td>
<td>{{instance.tootCount}}</td>
<td><a
href="/instance/{{instance.uuid}}"
class="btn btn-info">
<i class="fab fa-mastodon"></i>
</button></td>
</tr>
{% endfor %}
</tbody>