{% extends "base.html" %} {% block title %}API Keys — {{ club.name }}{% endblock %} {% block content %} {% include "club_ribbon.html" %}
API keys allow external services (e.g. WordPress, Google Forms) to create club members without a user account. Each key is scoped to this club only.
{% if api_keys %}| Name | Prefix | Status | Created | Last used | |
|---|---|---|---|---|---|
| {{ key.name }} | {{ key.prefix }}… |
{% if key.is_active %} Active {% else %} Revoked {% endif %} | {{ key.created_at|date:"N j, Y" }} | {{ key.last_used_at|date:"N j, Y g:i a"|default:"Never" }} | Manage {% if key.is_active %} Revoke {% endif %} |
No API keys yet. Create one to allow external integrations.
{% endif %} {% endblock %}