{% extends "base.html" %} {% block title %}{{ branding.name }} ยท {{ t('ui.account.title') }}{% endblock %} {% block content %}
{{ t('ui.account.general_description') }}
{{ t('ui.account.mcp_tokens_create_description') }}
| {{ t('ui.account.mcp_token_name') }} | {{ t('ui.account.mcp_token_created_at') }} | {{ t('ui.account.mcp_token_expires_at') }} | {{ t('ui.account.mcp_token_last_used_at') }} | {{ t('ui.account.mcp_token_status') }} | {{ t('ui.account.mcp_token_actions') }} |
|---|---|---|---|---|---|
|
{{ token.name }}
|
{% if token.created_at %} {{ token.created_at }} {% else %} - {% endif %} | {% if token.expires_at %} {{ token.expires_at }} {% else %} - {% endif %} | {% if token.last_used_at %} {{ token.last_used_at }} {% else %} - {% endif %} | {% if token.revoked_at %} {{ t('ui.account.mcp_token_status_revoked') }} {% elif token.is_active %} {{ t('ui.account.mcp_token_status_active') }} {% else %} {{ t('ui.account.mcp_token_status_expired') }} {% endif %} |
{% if not token.revoked_at %}
{% endif %}
|