Created
{{ token.created|annotated_date }}
Expires
{% if token.expires %}
{{ token.expires|annotated_date }}
{% else %}
Never
{% endif %}
Last Used
{% if token.last_used %}
{{ token.last_used|annotated_date }}
{% else %}
Never
{% endif %}
Create/Edit/Delete Operations
{% if token.write_enabled %}
Enabled
{% else %}
Disabled
{% endif %}
Allowed Source IPs
{% if token.allowed_ips %}
{{ token.allowed_ips|join:', ' }}
{% else %}
Any
{% endif %}
{% if token.description %}
{{ token.description }}
{% endif %}