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

User ID

Your user ID is {{ user.id }}

API Tokens

API keys are tokens used to authenticate you when using the REST API. These keys are like passwords; make sure to store them safely.

{% if user.api_tokens %}
{% for api_token in user.api_tokens %}
{{ form.csrf_token }}
{% endfor %}
{% endif %}
{{ form.description.label(class="col-form-label") }}
{{ form.description(class="form-control input-sm") }}
{{ form.csrf_token }}
{% endblock %}