Browse Source

templates/browse.html: display date added

pull/1/head
Hidden Z 14 years ago
parent
commit
2b9346a404
  1. 6
      pyi2phosts/templates/browse.html

6
pyi2phosts/templates/browse.html

@ -2,10 +2,10 @@ @@ -2,10 +2,10 @@
{% block content %}
<table>
<tr><td>Host</td><td>Last seen</td><td>Description</td></tr>
<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.description }}</td></tr>
<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>

Loading…
Cancel
Save