{% extends "base.html" %} {% block title %}API Keys - Whisper API Admin{% endblock %} {% block content %}

🔐 API Key Management

{% if message %}
{{ message }}
{% endif %} {% if new_key %}

✨ New API Key Generated

Copy this key now - it will not be shown again!

{{ new_key }}
{% endif %}

Create New API Key

Active API Keys

{% for key in keys %} {% endfor %}
ID Description Created Last Used Usage Count Status Actions
{{ key.id }} {{ key.description or '-' }} {{ key.created_at.strftime('%Y-%m-%d %H:%M') }} {% if key.last_used_at %} {{ key.last_used_at.strftime('%Y-%m-%d %H:%M') }} {% else %} Never {% endif %} {{ key.usage_count }} {{ 'Active' if key.is_active else 'Inactive' }}
{% if not keys %}

No API keys found. Create one above.

{% endif %}
{% endblock %}