{% extends "base.html" %} {% block title %}My Profile — Mockup{% endblock %} {% block content %}
Auth flow: ① Register② Login (post-register)③ Login (unverified)④ Login (normal)⑤ Profile (here)⑥ Edit Profile

My profile

Mockup — FOB-PROFILE-VIEW-1
Account Edit
First name
{{ first_name }}
Last name
{{ last_name }}
Email
{{ email }} {% if email_verified %} Verified {% else %} Not verified {% endif %}
{% if not email_verified %}
Verify your email to create and edit playbooks.
A verification email has been sent to {{ email }}.
{% endif %}
Username
{{ username }}
API token (MCP / REST)

Use as Authorization: Token … in MCP config and REST clients.

Old token stops working immediately. Update all MCP / scripts / clients.

My PIPs All PIPs
{% for pip in pips %} {% endfor %}
Title Playbook Status
{{ pip.title }} {{ pip.playbook_name }} {{ pip.status_display }} View
My playbooks All playbooks
{% for pb in playbooks %} {% endfor %}
Name Version Status
{{ pb.name }} v{{ pb.version }} {{ pb.status_display }} View
{% endblock %} {% block extra_js %} {% endblock %}