{% extends "base.html" %} {% block body %} {% include "partials/header.html" %}
Gestion des clés API
{% for k in api_keys %} {% endfor %}
Label Statut Créée Dernière utilisation Expire Scopes
{% if k.revoked_at %}révoquée {% elif k.expires_at and k.expires_at < now %}expirée {% else %}active {% endif %} {{ k.created_at.strftime('%Y-%m-%d %H:%M') if k.created_at else '' }} {{ k.last_used_at.strftime('%Y-%m-%d %H:%M') if k.last_used_at else '--' }}
{% for s in k.scopes %}
×
{% endfor %}
+ ajouter scope
Nouvelle clé
-- -- --
+ ajouter scope
{% endblock %} {% block scripts %} {% set projects_for_js = projects | list %} {% endblock %}