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

{{  object }}

Location

{% if perms.mdm.change_location %} {% url 'mdm:update_location' object.pk as url %} {% button 'UPDATE' url "Edit Location" %} {% endif %} {% if perms.mdm.delete_location and object.can_be_deleted %} {% url 'mdm:delete_location' object.pk as url %} {% button 'DELETE' url "Delete Location" %} {% endif %}
Attribute Value
Organization {{ object.organization_name }}
Name {{ object.name }}
Token expiration date {% if object.server_token_expires_soon %} {{ object.server_token_expiration_date|date:'SHORT_DATETIME_FORMAT'}} ({{ object.server_token_expiration_date|timeuntil }}) {% else %} {{ object.server_token_expiration_date|date:'SHORT_DATE_FORMAT'}} {% endif %}
Country code {{ object.country_code }}
Website URL {{ object.website_url }}
{% created_updated_at object %}
{% endblock %}