mirror of https://github.com/r4sas/py-i2phosts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
394 B
15 lines
394 B
{% extends "base.html" %} |
|
|
|
{% block content %} |
|
<table> |
|
<tr><td>Host</td><td>Last seen</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> |
|
{% endfor %} |
|
</table> |
|
|
|
{% if is_paginated %} |
|
{% load paginator %}{% paginator 3 %} |
|
{% endif %} |
|
{% endblock %}
|
|
|