{% extends "orga/base.html" %} {% load bootstrap4 %} {% load i18n %} {% block title %}{% trans "User settings" %}{% endblock %} {% block content %}
{% csrf_token %}
{% trans "User settings" %} {% bootstrap_form profile_form layout='event' %} {% include "orga/submit_row.html" with submit_name="form" submit_value="profile" %}
{% csrf_token %}
{% trans "Login settings" %} {{ login_form.media }} {% bootstrap_form login_form layout='event' %} {% include "orga/submit_row.html" with submit_name="form" submit_value="login" %}
{% csrf_token %}
{% trans "API Access" %}
{% blocktrans trimmed with apiurl='href="//api/events/" target="_blank" rel="noopener" class="btn btn-outline-info btn-sm"' docurl='href="https://docs.pretalx.org/en/latest/api/index.html" target="_blank" rel="noopener" class="btn btn-outline-info btn-sm"'%} This token can be used to access the pretalx API. You can generate a new token, which will invalidate the old one. To find out more, please have a look at the API documentation. {% endblocktrans %}
{{ token }}
{% trans "Use for authentication when accessing the API." %}
{% endblock %}