aboutsummaryrefslogtreecommitdiff
path: root/app/templates/peer_list.html
blob: d2dc97e6ea0cc7c2c9209fa285708fc7d6ec22fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% 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 %}