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

{{ object }}

{% if perms.mdm.change_artifact and object.type == 'Profile' %} Update {% endif %} {% if perms.mdm.delete_artifact %} Delete {% endif %}

{% if enterpriseapp_list %} {% with enterpriseapp_list|first as enterprise_app %} {% endwith %} {% endif %} {% if profile_list %} {% with profile_list|first as profile %} {% endwith %} {% endif %}
Type {{ object.get_type_display }}
Channel {{ object.channel }}
Platform{{ object.platforms|length|pluralize }} {{ object.platforms|join:", "|default:"-" }}

Enterprise App

Product ID {{ enterprise_app.product_id }}
Product version {{ enterprise_app.product_version }}
Bundle{{ enterprise_app.bundles|length|pluralize }} {% if enterprise_app.bundles %} {% for bundle in enterprise_app.bundles %} {% endfor %}
ID Version Path
{{ bundle.id }} {{ bundle.version_str }}{% if bundle.version != bundle.version_str %} / {{ bundle.version }}{% endif %} {{ bundle.path }}
{% else %} - {% endif %}

Profile

Payload description {{ profile.get_payload_description|default:"-" }}
Payload identifier {{ profile.payload_identifier }}
Installed payload identifier {{ profile.installed_payload_identifier }}
Created at
{{ object.created_at|date:'r' }}
Updated at
{{ object.updated_at|date:'r' }}
{% if object.trashed_at %}
Trashed at
{{ object.trashed_at|date:'r' }}
{% endif %}

{{ versions_count }} Version{{ versions_count|pluralize }}

{% if enterpriseapp_list %} {% for enterprise_app in enterpriseapp_list %} {% endfor %}
Version Filename Created at
{{ enterprise_app.artifact_version.version }} {{ enterprise_app.filename|default:"-" }} {{ enterprise_app.artifact_version.created_at }}
{% endif %} {% if profile_list %} {% for profile in profile_list %} {% endfor %}
Version Filename Payload UUID Payload Content Created at
{{ profile.artifact_version.version }} {{ profile.filename|default:"-" }} {{ profile.payload_uuid }}
    {% for payload_type, payload_display_name in profile.payloads %}
  • {{ payload_type }}{% if payload_display_name %} - {{ payload_display_name }}{% endif %}
  • {% endfor %}
{{ profile.artifact_version.created_at }}
{% endif %}

{{ blueprint_artifacts_count }} Blueprint{{ blueprint_artifacts_count|pluralize }}

{% if perms.mdm.change_blueprint %}

Add

{% endif %} {% if blueprint_artifacts_count %} {% for ba in blueprint_artifacts %} {% endfor %}
Name Priority Before S.A.? Auto update?
{% if perms.mdm.view_blueprint %} {{ ba.blueprint }} {% else %} {{ ba.blueprint }} {% endif %} {{ ba.priority }} {{ ba.install_before_setup_assistant|yesno }} {{ ba.auto_update|yesno }} {% if perms.mdm.change_blueprintartifact %} {% endif %} {% if perms.mdm.delete_blueprintartifact %} {% endif %}
{% endif %} {% endblock %}