Browse Source

templates/browse.html: add last seen and description

pull/1/head
Hidden Z 14 years ago
parent
commit
b67a9e9cc6
  1. 4
      pyi2phosts/templates/browse.html

4
pyi2phosts/templates/browse.html

@ -2,9 +2,9 @@ @@ -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>

Loading…
Cancel
Save