{% extends "base.html" %} {% load i18n %} {% block title %}{% if head_title %}{{ head_title }} ยท {% endif %}{% trans "Account Management" %}{% endblock %} {% block content %}
{# This inner div is where the card styling will go, similar to login/signup pages #} {# Individual templates extending this will provide their own card using block body_inner #} {% block body_inner %} {# Fallback content or structure if a child template doesn't define body_inner #}

{% if head_title %}{{ head_title }}{% else %}{% trans "Manage Account" %}{% endif %}

{% block manage_content %} {# Specific account management form/content goes here in child templates #}

Welcome to your account management area.

{% endblock manage_content %}
{% endblock body_inner %}
{% endblock %}