{% extends "maasserver/base.html" %} {% block nav-active-prefs %}active{% endblock %} {% block title %}User preferences for {{ user.username }}{% endblock %} {% block page-title %}User preferences for {{ user.username }}{% endblock %} {% block head %} {% endblock %} {% block content %}
{{ profile_form.as_p }}

An API token is the information you need to provide to a third party application for it to be able to access the MaaS server API on your behalf.

You can create as many API tokens as you require.

{% for token in user.get_profile.get_authorisation_tokens %} {% endfor %}
API tokens
{{ token.consumer.key }}:{{ token.key }}:{{ token.secret }}

{{ password_form.as_p }}
TODO manage keys.
{% endblock %}