add "peering-dir", logging,

This commit is contained in:
lare 2022-11-20 10:57:33 +01:00
parent 7d5937f3fb
commit 33e49bc0b6
6 changed files with 78 additions and 23 deletions

View file

@ -1,13 +1,14 @@
{% extends 'base.html' %}
{% block content %}
<script>
<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>
</script>
<div>
<a href="peerings/new"><button>add new</button></a>
</div>
<div>
</div>
{% endblock %}