{% extends 'django_spire/item/item.html' %} {% block item_title_col %}{% endblock %} {% block item_row_content %} {{ api_access.name }}
User Access
{% if api_access.has_super_access %} Super {% elif api_access.user %}
{{ api_access.user.get_full_name|title|default:api_access.user.username }}
{% else %}
No User
{% endif %}
Base Permission
{% if api_access.has_super_access %} {% endif %} {{ api_access.get_permission_display }} {% if api_access.has_super_access %} {% endif %}
Key Hint
{{ api_access.key_hint }}
Created On
{{ api_access.created_datetime|date:'M d, Y' }}
{% endblock %} {% block item_button %} {% if perms.django_spire_api.delete_apiaccess %} {% url 'django_spire:api:page:delete' pk=api_access.pk as delete_url %} {% endif %} {% include 'django_spire/dropdown/ellipsis_dropdown.html' with delete_url=delete_url %} {% endblock %}