{% extends "master.html" %} {% block title %}Settings ยท Anitya{% endblock %} {% block body %}

Settings

Manage your user profile and API authentication tokens.

User Profile

Your User ID: {{ user.id }}

API Tokens

API keys are tokens used to authenticate requests via the REST API. Keep them secure like passwords.

{% if user.api_tokens %}
{% for api_token in user.api_tokens %}
{{ form.csrf_token }}
{% endfor %}
{% endif %}
Generate New API Token
{{ form.description.label(class="col-form-label mb-0") }}
{{ form.description(class="form-control", placeholder="Token description") }}
{{ form.csrf_token }}
{% endblock %}