mirror of
https://github.com/r4sas/py-i2phosts
synced 2025-01-08 22:07:55 +00:00
12 lines
278 B
HTML
12 lines
278 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<table>
|
||
|
<tr><td>Host</td><td>Last seen</td><td>Description</td>
|
||
|
{% for host in host_list %}
|
||
|
<tr><td>{{ host.name }}</td><td>{{ host.last_seen }}</td><td>
|
||
|
{{ host.description }}</td></tr>
|
||
|
{% endfor %}
|
||
|
</table>
|
||
|
{% endblock %}
|