{% extends 'base.html' %} {% load inventory_extras %} {% block content %}

[DEP] {{ object }}

Configuration

Push certificate {% if perms.mdm.view_pushcertificate %} {{ object.push_certificate }} {% else %} {{ object.push_certificate }} {% endif %}
SCEP config {% if perms.mdm.view_scepconfig %} {{ object.scep_config }} {% else %} {{ object.scep_config }} {% endif %} {% if object.scep_verification %} / with CSR verification {% else %} / without CSR verification {% endif %}
Blueprint {% if object.blueprint %} {% if perms.mdm.view_blueprint %} {{ object.blueprint }} {% else %} {{ blueprint }} {% endif %} {% else %} - {% endif %}
Business unit {{ object.enrollment_secret.meta_business_unit }}
Enrollment tag{{ secret.tags.count|pluralize }} {% for tag in secret.tags.all %}{% inventory_tag tag %}{% empty %}-{% endfor %}

Authentication

Realm {% if object.realm %} {% if perms.realms.view_realm %} {{ object.realm }} {% else %} {{ object.realm }} {% endif %} {% else %} - {% endif %}
Use realm user {{ object.use_realm_user|yesno }}
Realm user is admin {{ object.realm_user_is_admin|yesno }}
Admin full name {{ object.admin_full_name|default:"-" }}
Admin short name {{ object.admin_short_name|default:"-" }}
Admin password set {% if object.admin_password_hash %}yes{% else %}no{% endif %}

DEP Profile

{% with object.virtual_server as virtual_server %} {% endwith %}
Virtual server {% if perms.mdm.view_depvirtualserver %} {{ virtual_server }} {% else %} {{ virtual_server }} {% endif %}
Organization {{ virtual_server.organization }}
Org info
Support phone number {{ object.support_phone_number|default:"-" }}
Support email {{ object.support_email_atdress|default:"-" }}
Org magic {{ object.org_magic|default:"-" }}
Department {{ object.department|default:"-" }}
Localization
Language {{ object.get_language_display|default:"-" }}
Region {{ object.get_region_display|default:"-" }}
Settings
allow pairing {{ object.allow_pairing|yesno }}
supervised {{ object.is_supervised|yesno }}
mandatory {{ object.is_mandatory|yesno }}
await device configured {{ object.await_device_configured|yesno }}
auto advance setup {{ object.auto_advance_setup|yesno }}
mdm removable {{ object.is_mdm_removable|yesno }}
include tls certificates {{ object.include_tls_certificates|yesno }}
Skip setup items
    {% for pane in object.skip_setup_items %}
  • {{ pane }}
  • {% endfor %}

Download from ABM {% if perms.mdm.change_depenrollment %} Edit {% endif %}

{% with object.depdevice_set.count as device_count %} {% with object.assigned_devices.count as assigned_device_count %}

Assigned to {{ assigned_device_count }} device{{ assigned_device_count|pluralize }} ({{ device_count }} total)

{% if device_count %} {% for device in object.depdevice_set.all %} {% endfor %}
Serial number Profile status Profile assign time Profile push time
{{ device.serial_number }} {% if device.is_deleted %} DELETED {% endif %} {{ device.profile_status }} {{ device.profile_assign_time|date:"SHORT_DATETIME_FORMAT"|default:"-" }} {{ device.profile_push_time|date:"SHORT_DATETIME_FORMAT"|default:"-" }}
{% endif %} {% endwith %} {% endwith %}

{{ dep_enrollment_sessions_count }} Session{{ dep_enrollment_sessions_count|pluralize }}

{% if object.realm %} {% endif %} {% for s in dep_enrollment_sessions %} {% if object.realm %} {% endif %} {% endfor %}
Serial numberRealm userStatus Created at Updated at
{% with s.get_serial_number as sn %} {% if sn %} {% if perms.mdm.view_enrolleddevice and s.enrolled_device %} {{ sn }} {% else %} {{ sn }} {% endif %} {% else %} - {% endif %} {% endwith %} {% if s.realm_user %}{{ s.realm_user }}{% else %}-{% endif %}{{ s.get_status_display }} {{ s.created_at|date:"SHORT_DATETIME_FORMAT" }} {{ s.updated_at|date:"SHORT_DATETIME_FORMAT" }}
{% endblock %}