2010-11-06 19:11:08 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<table>
|
2010-11-07 08:00:08 +00:00
|
|
|
<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 %}
|
2010-11-07 08:00:08 +00:00
|
|
|
<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 %}
|