{% extends 'base.html' %} {% load base_extras ui_extras %} {% block content %}

Device{{ page_obj.paginator.count|pluralize }} ({{ page_obj.paginator.count }})

{{ form }}
{% if object_list %} {% pagination next_url previous_url %} {% for dep_device in object_list %} {% endfor %}
serial number description server profile updated at
{{ dep_device.serial_number|privacywrapper }} {% if dep_device.is_deleted %} DELETED {% endif %} {{ dep_device.description|default:"-" }} {% if perms.mdm.view_depvirtualserver %} {{ dep_device.virtual_server }} {% else %} {{ dep_device.virtual_server }} {% endif %} {% if dep_device.enrollment %} {% if perms.mdm.view_depenrollment %} {{ dep_device.enrollment }} {% else %} {{ dep_device.enrollment }} {% endif %} {% else %} {{ dep_device.profile_uuid|default:"-" }} {% endif %} {{ dep_device.updated_at|date:"SHORT_DATETIME_FORMAT" }}
{% pagination next_url previous_url %} {% elif form.has_changed %} {% url 'mdm:dep_devices' as empty_results_url %} {% empty_results empty_results_url %} {% endif %} {% endblock %}