{% extends 'base.html' %} {% block title %}Settings - Packs{% endblock %} {% block content %}

Settings

{% if messages %} {% endif %}

API Tokens

Tokens let non-browser clients (like a Fabric mod) access the API and download packs.

{% csrf_token %}
{% if tokens %} {% for token in tokens %} {% endfor %}
Label Token Created Last used
{{ token.label }} {{ token.token }} {{ token.created_at }} {{ token.last_used|default:"never" }}
{% csrf_token %}
{% else %}

No tokens yet.

{% endif %} {% endblock %}