{% extends "base.html" %} {% block title %}API Tokens - VidAI{% endblock %} {% block head %} {% endblock %} {% block content %}

Your API Tokens

Link Mobile App
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}

Your API Tokens

{% for token in user_tokens %} {% endfor %} {% if not user_tokens %} {% endif %}
Name Created Last Used Status Actions
{{ token.get('name') }} {{ token.get('created_at', 'N/A')[:19] if token.get('created_at') else 'N/A' }} {{ token.get('last_used', 'Never')[:19] if token.get('last_used') else 'Never' }} {{ 'Active' if token.get('active') else 'Inactive' }}
No API tokens found. Generate your first token above.
{% if generated_token %} {% endif %} {% endblock %}