blob: d2dc97e6ea0cc7c2c9209fa285708fc7d6ec22fe (
plain) (
tree)
|
|
{% extends 'base.html' %}
{% block content %}
<h1>Owned/Managed Peers</h1>
<table>
<thead>
<tr>
<th scope="col">ID</th>
<th scope="col">Address</th>
<th scope="col">Public Key</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
{% for p in peers %}
<tr>
<td>{{p.id}}</td>
<td>{{p.addr}}</td>
<td>{{p.public_key}}</td>
<td>{{p.description}}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}
|