autopeering/web/frontend/peerings.html

13 lines
246 B
HTML
Raw Normal View History

2022-11-17 06:43:43 +01:00
{% extends 'base.html' %}
{% block content %}
2022-11-20 10:57:33 +01:00
<div>
<a href="peerings/new"><button>add new</button></a>
</div>
<div>
{% for peering in peerings.get_peerings_by_mnt(session["login"]) %}
{{peering}} <br>
{% endfor %}
2022-11-20 10:57:33 +01:00
</div>
2022-11-17 06:43:43 +01:00
{% endblock %}