A Python port of the Invisible Internet Project (I2P)
at main 17 lines 541 B view raw
1{% extends "base.html" %} 2{% block title %}Tunnels{% endblock %} 3{% block content %} 4<h1>Tunnels</h1> 5<div class="card"> 6 <table> 7 <thead><tr><th>Name</th><th>Type</th><th>Status</th><th>Connections</th></tr></thead> 8 <tbody> 9 {% for t in tunnels %} 10 <tr><td>{{ t.name }}</td><td>{{ t.type }}</td><td>{{ t.status }}</td><td>{{ t.connections }}</td></tr> 11 {% else %} 12 <tr><td colspan="4">No active tunnels</td></tr> 13 {% endfor %} 14 </tbody> 15 </table> 16</div> 17{% endblock %}