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

MDM blueprint {{ object }}

Attribute Value
Name {{ object.name }}
Inventory interval {{ object.get_inventory_interval_display }}
Collect apps {{ object.get_collect_apps_display }}
Collect certificates {{ object.get_collect_certificates_display }}
Collect profiles {{ object.get_collect_profiles_display }}
Created at
{{ object.created_at|date:'r' }}
Updated at
{{ object.updated_at|date:'r' }}
{% if perms.mdm.change_blueprint %}
Update
{% endif %}

{{ artifacts_count }} Artifact{{ artifacts_count|pluralize }}

{% if artifacts_count %} {% for ba in artifacts %} {% with ba.artifact as a %} {% endwith %} {% endfor %}
Name Type Version Priority Before S.A.? Auto update?
{% if perms.mdm.view_artifact %} {{ a }} {% else %} {{ a }} {% endif %} {{ a.get_type_display }} {{ ba.artifact__artifactversion__version__max }} {{ ba.priority }} {{ ba.install_before_setup_assistant|yesno }} {{ ba.auto_update|yesno }}
{% endif %}
{% if dep_enrollments %}

{{ dep_enrollments|length }} DEP enrollment{{ dep_enrollments|length|pluralize }}

{% endif %} {% if ota_enrollments %}

{{ ota_enrollments|length }} OTA enrollment{{ ota_enrollments|length|pluralize }}

{% endif %} {% if user_enrollments %}

{{ user_enrollments|length }} user enrollment{{ user_enrollments|length|pluralize }}

{% endif %}
{% endblock %}