{% extends 'base.html' %} {% load base_extras %} {% load ui_extras %} {% block content %}
| 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 }} |
| Source | Taxonomy | Regex | Replacement | {% if perms.jamf.change_tagconfig or perms.jamf.delete_tagconfig %}{% endif %} |
|---|---|---|---|---|
| {{ tag_config.get_source_display }} | {{ tag_config.taxonomy }} | {{ tag_config.regex }} | {{ tag_config.replacement }} | {% if perms.jamf.change_tagconfig or perms.jamf.delete_tagconfig %}{% 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 %}