{% extends "base.html" %} {% block title %}Devices - Network Asset Management{% endblock %} {% block head_extra %} {% endblock %} {% block content %}
Showing {{ (pagination.page - 1) * pagination.per_page + 1 }} - {{ (pagination.page - 1) * pagination.per_page + devices|length }} of {{ pagination.total }} devices

Device List

{{ devices|length }} devices loaded
{% if not devices %} {% endif %} {% for device in devices %} {% endfor %}
Status Device Site Vendor/Model Management IP Role Captures Last Updated Actions

No devices found matching your filters

{% if device.current_captures > 0 and device.last_fingerprint_success %} {% elif device.current_captures > 0 or device.last_fingerprint_success %} {% else %} {% endif %}
{{ device.name }}
{{ device.normalized_name }}
{% if device.is_stack %} Stack ({{ device.stack_count }}) {% endif %} {% if device.is_infrastructure %} Infrastructure {% endif %} {% if device.have_sn %} {% endif %}
{{ device.site_code or '-' }}
{% if device.site_name %}
{{ device.site_name }}
{% endif %}
{{ device.vendor_name or '-' }}
{{ device.model or '-' }}
{% if device.device_type_name %}
{{ device.device_type_name }}
{% endif %}
{% if device.management_ip %} {{ device.management_ip }} {% else %} - {% endif %} {{ device.role_name or '-' }} {% if device.current_captures > 0 %} {{ device.current_captures }}
({{ device.capture_types }} types)
{% else %} 0 {% endif %}
{% if device.last_updated %} {{ device.last_updated[:19] }} {% else %} - {% endif %}
{% if pagination.total_pages > 1 %}
Page {{ pagination.page }} of {{ pagination.total_pages }} ({{ pagination.total }} total devices)
{% endif %} {% endblock %}