{% extends 'base.html' %} {% load ui_extras %} {% block content %}
| Attribute | Value |
|---|---|
| Product type | {{ object.product_type }} |
| Name | {{ object.name }} |
| iTunes identifier | {% if object.store_url %} {{ object.adam_id }} {% else %} {{ object.adam_id }} {% endif %} |
| iTunes pricing | {{ object.pricing_param }} |
| Device assignable | {{ object.device_assignable|yesno }} |
| Revocable | {{ object.revocable|yesno }} |
| Supported platform{{ object.supported_platforms|length|pluralize }} | {{ object.supported_platforms|join:", "|default:"-" }} |
App |
|
| Bundle ID | {{ object.bundle_id|default:"-" }} |
| Latest version | {{ object.lastest_version|default:"-" }} |
| Location | Assigned | Available | Retired | Total | {% for location_asset in location_assets %} {% with location_asset.location as location %}
|---|---|---|---|---|
| {% if perms.mdm.view_location %} {{ location }} {% else %} {{ location }} {% endif %} | {{ location_asset.assigned_count }} | {{ location_asset.available_count }} | {{ location_asset.retired_count }} | {{ location_asset.total_count }} |
No locations found for this asset.
{% endif %}| Name | Location | Has configuration | {% for artifact, store_apps in artifacts %} {% with store_apps|last as latest_store_app %} {% with latest_store_app.location_asset.location as location %}|
|---|---|---|---|
| {% if perms.mdm.view_artifact %} {{ artifact }} {% else %} {{ artifact }} {% endif %} | {% if perms.mdm.view_location %} {{ location }} {% else %} {{ location }} {% endif %} | {{ latest_store_app.has_configuration }} | {{ latest_store_app.version }} |
No artifacts found for this asset.
{% endif %} {% endblock %}