autopeering/web/frontend/peerings.html

13 lines
357 B
HTML
Raw Normal View History

2022-11-17 06:43:43 +01:00
{% 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 %}