diff options
author | Cara Salter <cara@devcara.com> | 2022-10-07 08:27:07 -0400 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2022-10-07 08:27:07 -0400 |
commit | bbdb97213ff7e486b18753a6052b2c6de7b36f86 (patch) | |
tree | 84cbda8065e1afa524bb4c516bcd42ff6d7ed6e0 /app/templates/peer_list.html | |
parent | f9b99ce66f56995a29709e9bf24750dab9430767 (diff) | |
download | nccd-bbdb97213ff7e486b18753a6052b2c6de7b36f86.tar.gz nccd-bbdb97213ff7e486b18753a6052b2c6de7b36f86.zip |
WIP: Peer enrolling
Diffstat (limited to 'app/templates/peer_list.html')
-rw-r--r-- | app/templates/peer_list.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/app/templates/peer_list.html b/app/templates/peer_list.html new file mode 100644 index 0000000..d2dc97e --- /dev/null +++ b/app/templates/peer_list.html @@ -0,0 +1,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 %} |