autopeering/web/frontend/index.html
lare 740b050fc4 implement debug login;
add functions for add/remove/view peerings
2022-11-18 10:25:58 +01:00

32 lines
No EOL
688 B
HTML

{% extends 'base.html' %}
{% block content %}
<div>
</div>
<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 %}