mirror of https://github.com/r4sas/py-i2phosts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
659 B
21 lines
659 B
{% extends "base.html" %} |
|
|
|
{% block header %} |
|
<h3>All active hosts in I2P |
|
<a href={% url browse-rss %}><img src="/static/rss-grey-18.png" border="0" width="18" height="18" alt="rss"></a></h3> |
|
{% endblock %} |
|
|
|
{% block content %} |
|
<table> |
|
<tr><td>Host</td><td>Last seen</td><td>Date added</td><td>Description</td></tr> |
|
{% for host in host_list %} |
|
<tr><td><a href="http://{{ host.name }}/?i2paddresshelper={{host.b64hash}}">{{ host.name }}</a></td><td>{{ host.last_seen }}</td> |
|
<td>{{ host.date_added }}</td><td>{{ host.description }}</td></tr> |
|
{% endfor %} |
|
</table> |
|
|
|
{% if is_paginated %} |
|
{% load paginator %}{% paginator 3 %} |
|
{% endif %} |
|
|
|
{% endblock %}
|
|
|