{% extends "ui/network_sidebar.html" %} {% load url from future %} {% load icons %} {% load bob %} {% block contentarea %}
{% if network and not network.environment.queue %}
{% icon 'fugue-toolbox' %} Edit network

This network environment has no discovery queue configured.

{% else %} {% if network %}
{% if network.last_scan %}

Last scan of this network happened {{ network.last_scan }}.

{% else %}

This network has never been scanned.

{% endif %}
{% endif %} {% endif %} {% spaceless %} {% if show_bulk %} {% endif %} {% include 'ui/column-header.html' with label='Address' name='address' always=1 type='number' %} {% include 'ui/column-header.html' with label='Hostname' name='hostname' always=1 %} {% include 'ui/column-header.html' with label='Device' name='device' always=1 %} {% include 'ui/column-header.html' with label='Last seen' name='last_seen' always=1 type='date' %} {% include 'ui/column-header.html' with label='SNMP' name='snmp_name' always=1 %} {% include 'ui/column-header.html' with label='HTTP' name='http_family' always=1 %} {% endspaceless %} {% for d in object_list %} {% endfor %}
Full Scan
{{ d|address_icon }} {{ d.address }} {{ d.hostname|default:'' }} {% if d.device %} {{ d.device|device_icon }} {{ d.device.model.name|default:'' }} {% endif %} {{ d.last_seen|date:"Y-m-d H:i" }} {{ d.snmp_name|default:'' }} {{ d.http_family|default:'' }} {% if d.scan_summary.changed %}  Show full change {% endif %}
{% pagination page_obj url_query=url_query show_all=1 fugue_icons=1 %} {% if show_bulk %}
{% csrf_token %}
{% if status_selected == 'buried' %} {% else %} {% endif %}
{% endif %}
{% tab_menu status_menu_items status_selected side='right' %}
{% endblock contentarea %}