1
0
mirror of https://github.com/r4sas/py-i2phosts synced 2025-01-09 14:28:03 +00:00
py-i2phosts/pyi2phosts/templates/browse.html
2010-11-11 19:25:39 +00:00

16 lines
442 B
HTML

{% extends "base.html" %}
{% 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 }}">{{ 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 %}