2010-11-06 19:11:08 +00:00
|
|
|
{% extends "base.html" %}
|
2011-02-19 13:26:28 +00:00
|
|
|
{% load i18n %}
|
2010-11-06 19:11:08 +00:00
|
|
|
|
2011-02-17 18:52:51 +00:00
|
|
|
{% block header %}
|
2011-02-19 13:26:28 +00:00
|
|
|
<h3>{% trans "All active hosts in I2P" %}
|
2011-02-17 18:52:51 +00:00
|
|
|
<a href={% url browse-rss %}><img src="/static/rss-grey-18.png" border="0" width="18" height="18" alt="rss"></a></h3>
|
|
|
|
{% endblock %}
|
|
|
|
|
2010-11-06 19:11:08 +00:00
|
|
|
{% block content %}
|
|
|
|
<table>
|
2011-02-19 13:26:28 +00:00
|
|
|
<tr><td>{% trans "Host" %}</td><td>{% trans "Last seen" %}</td><td>{% trans "Date added" %}</td><td>{% trans "Description" %}</td></tr>
|
2010-11-06 19:11:08 +00:00
|
|
|
{% for host in host_list %}
|
2010-12-07 20:09:01 +00:00
|
|
|
<tr><td><a href="http://{{ host.name }}/?i2paddresshelper={{host.b64hash}}">{{ host.name }}</a></td><td>{{ host.last_seen }}</td>
|
2010-11-11 19:25:12 +00:00
|
|
|
<td>{{ host.date_added }}</td><td>{{ host.description }}</td></tr>
|
2010-11-06 19:11:08 +00:00
|
|
|
{% endfor %}
|
|
|
|
</table>
|
2010-11-06 21:14:39 +00:00
|
|
|
|
|
|
|
{% if is_paginated %}
|
|
|
|
{% load paginator %}{% paginator 3 %}
|
|
|
|
{% endif %}
|
2011-02-17 18:52:51 +00:00
|
|
|
|
2010-11-06 19:11:08 +00:00
|
|
|
{% endblock %}
|