{% extends "base.html" %} {% block title %}{{ vendor.name }} - Vendor Details{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Vendor Information

Vendor Name: {{ vendor.name }}
{% if vendor.short_name %}
Short Name: {{ vendor.short_name }}
{% endif %} {% if vendor.description %}
Description: {{ vendor.description }}
{% endif %}

Device Statistics

Total Devices: {{ vendor.device_count or 0 }}

Devices from This Vendor

{% if devices %} View in Device List {% endif %}
{% if devices %} {% for device in devices %} {% endfor %}
Status Device Site Model Role Captures Actions
{% if device.current_captures > 0 and device.last_fingerprint_success %} {% elif device.current_captures > 0 or device.last_fingerprint_success %} {% else %} {% endif %} {{ device.name }} {% if device.is_stack %} Stack {% endif %} {{ device.site_name or '-' }} {{ device.model or '-' }} {{ device.role_name or '-' }} {% if device.current_captures > 0 %} {{ device.current_captures }} / {{ device.capture_types or 0 }} types {% else %} 0 {% endif %}
{% else %}

No devices from this vendor

Assign devices to this vendor to see them here

{% endif %}
{% if vendor.device_count == 0 %}

Confirm Deletion

Delete vendor "{{ vendor.name }}"?

This action cannot be undone.

{% endif %} {% endblock %}