A Python port of the Invisible Internet Project (I2P)
at main 17 lines 567 B view raw
1{% extends "base.html" %} 2{% block title %}Peers{% endblock %} 3{% block content %} 4<h1>Peers</h1> 5<div class="card"> 6 <table> 7 <thead><tr><th>Destination</th><th>State</th><th>Transport</th><th>Direction</th></tr></thead> 8 <tbody> 9 {% for peer in peers %} 10 <tr><td>{{ peer.dest[:20] }}...</td><td>{{ peer.state }}</td><td>{{ peer.transport }}</td><td>{{ peer.direction }}</td></tr> 11 {% else %} 12 <tr><td colspan="4">No active peers</td></tr> 13 {% endfor %} 14 </tbody> 15 </table> 16</div> 17{% endblock %}