{% extends "base.html" %} {% block title %}API Keys - Whisper API Admin{% endblock %} {% block content %}
Copy this key now - it will not be shown again!
| 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' }} |
No API keys found. Create one above.
{% endif %}