{% extends 'base.html' %} {% load inventory_extras %} {% block content %}
| 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 %} |
| 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 %} |
| 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 |
|
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 %}| Serial number | Profile status | Profile assign time | Profile push time | {% for device in object.depdevice_set.all %}
|---|---|---|---|
| {{ 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:"-" }} |
| Serial number | {% if object.realm %}Realm user | {% endif %}Status | Created at | Updated at | {% for s in dep_enrollment_sessions %}
|---|---|---|---|---|
| {% 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 object.realm %}{% if s.realm_user %}{{ s.realm_user }}{% else %}-{% endif %} | {% endif %}{{ s.get_status_display }} | {{ s.created_at|date:"SHORT_DATETIME_FORMAT" }} | {{ s.updated_at|date:"SHORT_DATETIME_FORMAT" }} |