- (the (test) signature allegedly has the wrong length?) - add login route for main.py
30 lines
No EOL
616 B
HTML
30 lines
No EOL
616 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<div>
|
|
|
|
</div>
|
|
<div>
|
|
|
|
</div>
|
|
<div>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Country</th>
|
|
<th>City</th>
|
|
<th>peerings</th>
|
|
<th>Peer!</th>
|
|
</tr>
|
|
</thead>
|
|
{% for node in config["nodes"] %}
|
|
<tr>
|
|
<td>{{config["nodes"][node]["country"]}}</td>
|
|
<td>{{config["nodes"][node]["city"]}}</td>
|
|
<td></td>
|
|
<td><a href="peer?node={{node}}">peer</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
{% endblock %} |