A Python port of the Invisible Internet Project (I2P)
1{% extends "base.html" %}
2{% block title %}Profiles{% endblock %}
3{% block content %}
4<h1>Peer Profiles</h1>
5<div class="card">
6 <table>
7 <thead><tr><th>Peer</th><th>Speed</th><th>Capacity</th><th>Integration</th></tr></thead>
8 <tbody>
9 {% for p in profiles %}
10 <tr><td>{{ p.hash[:16] }}...</td><td>{{ p.speed }}</td><td>{{ p.capacity }}</td><td>{{ p.integration }}</td></tr>
11 {% else %}
12 <tr><td colspan="4">No peer profiles available</td></tr>
13 {% endfor %}
14 </tbody>
15 </table>
16</div>
17{% endblock %}