{% extends 'base.html' %} {% load base_extras %} {% load ui_extras %} {% block content %}

{{ title }}

Instance

{% url 'jamf:delete_jamf_instance' object.pk as url %} {% button 'LINK' object.api_doc_url "API resource documentation" %} {% if perms.jamf.change_jamfinstance %} {% url 'jamf:update_jamf_instance' object.pk as url %} {% button 'UPDATE' url "Edit Instance" %} {% endif %} {% if perms.jamf.delete_jamfinstance %} {% url 'jamf:delete_jamf_instance' object.pk as url %} {% button 'DELETE' url "Delete Instance" %} {% endif %}
Attribute Value
Business unit {% if object.business_unit %} {{ object.business_unit }} {% else %} - {% endif %}
API URL {{ object.api_base_url }}
API user {{ object.user }}
Use Bearer token authentication {{ object.bearer_token_authentication|yesno }}
Inventory apps shard {{ object.inventory_apps_shard }}%
Inventory extension attribute{{ object.inventory_extension_attributes|length|pluralize }} {{ object.inventory_extension_attributes|join:", "|default:"-" }}
Principal user UID extension attribute {{ object.principal_user_uid_extension_attribute|default:"-" }}
Principal user principal name extension attribute {{ object.principal_user_pn_extension_attribute|default:"-" }}
Principal user display name extension attribute {{ object.principal_user_dn_extension_attribute|default:"-" }}
Check-in heartbeat timeout {{ object.checkin_heartbeat_timeout|duration_repr }}
Inventory completed heartbeat timeout {{ object.inventory_completed_heartbeat_timeout|duration_repr }}
{% created_updated_at object %} {% if perms.jamf.view_tagconfig %}

Tag config{{  tag_config_count|pluralize }} ({{ tag_config_count }})

{% if perms.jamf.add_tagconfig %} {% url 'jamf:create_tag_config' object.pk as url %} {% button 'CREATE' url "Add new Tag Config" %} {% endif %}
{% if tag_configs %}
{% if perms.jamf.change_tagconfig or perms.jamf.delete_tagconfig %} {% endif %} {% for tag_config in tag_configs %} {% if perms.jamf.change_tagconfig or perms.jamf.delete_tagconfig %} {% endif %} {% endfor %}
Source Taxonomy Regex Replacement
{{ tag_config.get_source_display }} {{ tag_config.taxonomy }} {{ tag_config.regex }} {{ tag_config.replacement }} {% if perms.jamf.change_tagconfig %} {% url 'jamf:update_tag_config' object.pk tag_config.pk as url %} {% button 'UPDATE' url "Edit Tag Configuration" %} {% endif %} {% if perms.jamf.delete_tagconfig %} {% url 'jamf:delete_tag_config' object.pk tag_config.pk as url %} {% button 'DELETE' url "Delete Tag Configuration" %} {% endif %}
{% endif %}
{% endif %} {% endblock %}