2022-11-12 14:50:18 +01:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2022-11-17 06:43:43 +01:00
|
|
|
<th>NodeName</th>
|
2022-11-12 14:50:18 +01:00
|
|
|
<th>Country</th>
|
|
|
|
<th>City</th>
|
|
|
|
<th>peerings</th>
|
|
|
|
<th>Peer!</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
{% for node in config["nodes"] %}
|
|
|
|
<tr>
|
2022-11-17 06:43:43 +01:00
|
|
|
<td>{{node}}</td>
|
2022-11-12 14:50:18 +01:00
|
|
|
<td>{{config["nodes"][node]["country"]}}</td>
|
|
|
|
<td>{{config["nodes"][node]["city"]}}</td>
|
|
|
|
<td></td>
|
2022-11-18 10:25:58 +01:00
|
|
|
<td><a href="peerings/new?node={{node}}">peer</a></td>
|
2022-11-12 14:50:18 +01:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|