{% extends "baseTemplate/index.html" %} {% load static %} {% comment %} The signed-in account's own details. Deliberately narrow: name and email only. ACL, owner, state and website allowance are not editable here at any privilege level, so this page can never become a self-elevation path. {% endcomment %} {% block title %}Profile{% endblock %} {% block content %} {% comment %} Current values are handed to the controller through data attributes so that Django does the escaping; never interpolate server text into a script body. {% endcomment %}

Your profile

Signed in as {{ profileUserName }}.

Contact details

Used for password resets and panel notifications.

Account

Username
{{ profileUserName }}
Role
{{ roleName }}
ACL
{{ aclName }}
Owner
{{ ownerName|default:"—" }}
Websites
{{ websites }}
Two-factor
{% if twoFA %} Enabled {% else %} Not enabled {% endif %}
Last login
{{ lastLogin }}
Member since
{{ dateCreated }}

Your role, ACL and owner are shown here but cannot be edited from this page — nobody may change their own ACL, and only an administrator may change an account's owner.

{% endblock %} {% block scripts %} {% endblock %}