{% extends "base.html" %} {% block title %}Profile · Tusk{% endblock %} {% block content %}
Profile
Account info, password, and membership.

Account information

Change password

Minimum 8 characters; must contain at least one letter and one digit.
{# Token list handed to Alpine through a JSON script tag: MiniJinja's tojson inside a double-quoted attribute terminates the attribute at the first quote. #}

API tokens

For MCP clients (Claude Code, Cursor) and scripts. A token acts as you: same connections, same permissions. Send it as Authorization: Bearer <token>.

Groups & permissions

Member of
{% if profile_groups %} {% for g in profile_groups %} {{ g.name }} {% endfor %} {% else %} No groups assigned {% endif %}
Permissions
{% if profile_permissions %} {% for p in profile_permissions %} {{ p }} {% endfor %} {% else %} No permissions {% endif %}
{% endblock %} {% block scripts %} {% endblock %}