{% extends "base.html" %} {% block content %}

{{ _('API Keys Management') }}

{{ _('Create New API Key') }}
{% for key in keys %} {% else %} {% endfor %}
{{ _('ID') }} {{ _('API Key Name') }} {{ _('API Key') }} {{ _('Created At') }} {{ _('Action') }}
{{ key.id }} {{ key.name }} {{ key.key }} {{ key.created_at.strftime('%Y-%m-%d %H:%M:%S') }}
{{ _('No API keys found.') }}
{% endblock %}