{% extends "admin/layout.html" %} {% block title %}API & Access Keys - Admin{% endblock %} {% block content %}

API & Access Key Management

Manage API keys and access keys for integrations

API Keys

{% if api_keys %} {% for key in api_keys %} {% endfor %} {% else %} {% endif %}
Key Name Key Value Created At Actions
{{ key.name }} {{ key.value }} {{ key.created_at.strftime('%d-%m-%Y %H:%M') if key.created_at else 'N/A' }}

No API keys found.

Access Keys

{% if access_keys %} {% for key in access_keys %} {% endfor %} {% else %} {% endif %}
Key Name Key Value Created At Actions
{{ key.name }} {{ key.value }} {{ key.created_at.strftime('%d-%m-%Y %H:%M') if key.created_at else 'N/A' }}

No access keys found.

{% endblock %}