1
0
mirror of https://github.com/r4sas/py-i2phosts synced 2025-01-09 22:38:08 +00:00
py-i2phosts/pyi2phosts/templates/browse.html

16 lines
394 B
HTML
Raw Normal View History

2010-11-06 19:11:08 +00:00
{% extends "base.html" %}
{% block content %}
<table>
<tr><td>Host</td><td>Last seen</td><td>Description</td></tr>
2010-11-06 19:11:08 +00:00
{% for host in host_list %}
<tr><td><a href="http://{{ host.name }}">{{ host.name }}</a></td><td>{{ host.last_seen }}</td><td>
2010-11-06 19:11:08 +00:00
{{ host.description }}</td></tr>
{% endfor %}
</table>
2010-11-06 21:14:39 +00:00
{% if is_paginated %}
{% load paginator %}{% paginator 3 %}
{% endif %}
2010-11-06 19:11:08 +00:00
{% endblock %}