{% extends "base.html.tera" %} {% import "inputs.html.tera" as inputs %} {% block title %} API Keys - {{ current_user.username }} {% endblock title %} {% block content %}
| Name | Active | Expiration Date | Actions |
|---|---|---|---|
| {{ api_key.name}} | {% if api_key.revoked %} No Longer Active {% else %} Currently Active {% endif %} | {{ api_key.expiration_date }} | {% if api_key.revoked %} A revoked API Key cannot be revived {% else %} {% endif %} |