{% extends 'generic/object.html' %} {% load helpers %} {% block breadcrumbs %} {{ block.super }} {% endblock %} {% block content %}
Regenerate Credential Token
Warning

You are about to regenerate the credential token for credential set {{ object.name }}.

  • This will invalidate the current token immediately
  • Any applications using the current token will need to be updated
  • The new token will be displayed only once
  • This action cannot be undone
{% csrf_token %}
Current Token Information
{% if object.last_used %} {% else %} {% endif %}
Token (truncated): {{ object.access_token|truncatechars:20 }}...
Created: {{ object.created|date:"SHORT_DATETIME_FORMAT" }}
Last Used: {{ object.last_used|date:"SHORT_DATETIME_FORMAT" }}
Last Used: Never
Security Recommendations
  • Only regenerate if the token is compromised
  • Store the new token securely immediately
  • Update all applications using this token
  • Consider using environment variables for token storage
  • Monitor usage after regeneration

This confirmation is required to prevent accidental token regeneration.
Cancel
{% endblock %}