{% extends "base.html" %} {% block title %}Users ยท API Gateway{% endblock %} {% macro trash(label) %} {% endmacro %} {% macro pencil(label, modal) %} {% endmacro %} {% block content %}

Users

{% for u in users %} {% endfor %}
UsernameAPI keysCreatedOn
{{ u.username }} {{ u.api_keys | length }} {{ u.created_at.strftime("%Y-%m-%d") }} {% if u.id != user.id %}
{% else %} {% endif %}
{{ pencil('Edit ' ~ u.username, 'modal-user-' ~ u.id) }} {% if u.id != user.id %}
{{ trash('Delete ' ~ u.username) }}
{% endif %}
Every user can sign in to this console and own API keys. Gateway access itself is granted per key on the API Keys page.
{% for u in users %} {% endfor %} {% endblock %}