implement debug login;

add functions for add/remove/view peerings
This commit is contained in:
lare 2022-11-18 10:25:58 +01:00
parent 73de6addc1
commit 85135dd449
5 changed files with 65 additions and 23 deletions

View file

@ -0,0 +1,13 @@
{% extends 'base.html' %}
{% block content %}
<form action="peer" method="post">
<select name="node" id="node">
{% for node in config["nodes"] %}
<option value="{{node}}" {% if selected_node %}{% if selected_node == node %}selected{% endif %}{% endif %} >{{node}}</option>
{% endfor %}
</select>
</form>
{% endblock %}