13 lines
No EOL
246 B
HTML
13 lines
No EOL
246 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<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 %}
|
|
</div>
|
|
|
|
{% endblock %} |