1
0
mirror of https://github.com/r4sas/py-i2phosts synced 2025-02-02 09:55:52 +00:00

templates/browse.html: add last seen and description

This commit is contained in:
Hidden Z 2010-11-07 08:00:08 +00:00
parent 0806c2ffb0
commit b67a9e9cc6

View File

@ -2,9 +2,9 @@
{% block content %}
<table>
<tr><td>Host</td><td>Last seen</td><td>Description</td>
<tr><td>Host</td><td>Last seen</td><td>Description</td></tr>
{% for host in host_list %}
<tr><td>{{ host.name }}</td><td>{{ host.last_seen }}</td><td>
<tr><td><a href="http://{{ host.name }}">{{ host.name }}</a></td><td>{{ host.last_seen }}</td><td>
{{ host.description }}</td></tr>
{% endfor %}
</table>