autopeering/web/frontend/index.html
lare 537400f77a add ability to delete peerings
+ format all files
+ fix "selected_peering" not being defined in /peerings/edit
2022-12-07 17:32:39 +01:00

25 lines
553 B
HTML

{% extends 'base.html' %} {% block content %}
<div></div>
<div>
<table>
<thead>
<tr>
<th>NodeName</th>
<th>Country</th>
<th>City</th>
<th>peerings</th>
<th>Peer!</th>
</tr>
</thead>
{% for node in config["nodes"] %}
<tr>
<td>{{node}}</td>
<td>{{config["nodes"][node]["country"]}}</td>
<td>{{config["nodes"][node]["city"]}}</td>
<td></td>
<td><a href="peerings/new?node={{node}}">peer</a></td>
</tr>
{% endfor %}
</table>
</div>
{% endblock %}