{% extends "base.html" %} {% block title %}API Clients - LSMC Atlas{% endblock %} {% block content %}

API Clients

+ New API Client
{% if clients %}
{% for client, revision in clients %} {% endfor %}
Client Name Status Permissions Rate Limit Expires Created Actions
{{ client.client_name }} {% if revision.is_active %} {% if revision.expires_at and revision.expires_at < now %} Expired {% else %} Active {% endif %} {% else %} Inactive {% endif %}
{% for perm in revision.permissions[:3] %} {{ perm }} {% endfor %} {% if revision.permissions|length > 3 %} +{{ revision.permissions|length - 3 }} more {% endif %}
{{ revision.rate_limit_per_minute or 'None' }} {% if revision.rate_limit_per_minute %}/min{% endif %} {% if revision.expires_at %} {{ revision.expires_at.strftime('%Y-%m-%d') }} {% else %} Never {% endif %} {{ client.created_at.strftime('%Y-%m-%d') }} View Edit
{% else %}

No API clients yet.

Create your first API client →
{% endif %}
{% endblock %}