A Python port of the Invisible Internet Project (I2P)
1{% extends "base.html" %}
2{% block title %}NetDB{% endblock %}
3{% block content %}
4<h1>NetDB</h1>
5<div class="card">
6 <table>
7 <thead><tr><th>Hash</th><th>Type</th><th>Published</th></tr></thead>
8 <tbody>
9 {% for e in entries %}
10 <tr><td>{{ e.hash[:16] }}...</td><td>{{ e.type }}</td><td>{{ e.published }}</td></tr>
11 {% else %}
12 <tr><td colspan="3">No NetDB entries loaded</td></tr>
13 {% endfor %}
14 </tbody>
15 </table>
16</div>
17{% endblock %}