26 lines
775 B
HTML
26 lines
775 B
HTML
{% extends 'base.html' %}
|
|
{% block content %}
|
|
<table class="table">
|
|
<tr>
|
|
<th>Хост</th>
|
|
<th>Порт</th>
|
|
<th>Статус</th>
|
|
<th>Изменен</th>
|
|
</tr>
|
|
{% for obj in object_list %}
|
|
<tr>
|
|
<td><a href="{% url 'host-info' pk=obj.pk %}">{{ obj.host_name }}</a></td>
|
|
<td>{{ obj.port }}</td>
|
|
<td>
|
|
{% if obj.status == True %}
|
|
<strong style="color:darkgreen">ON</strong>
|
|
{% else %}
|
|
<strong style="color:red">OFF</strong>
|
|
{% endif %}
|
|
</td>
|
|
<td>{{ obj.updated|date:"d.m.Y." }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endblock %}
|