{% extends "admin/base_admin.html" %} {% block title %}Profile Settings - Savly Admin{% endblock %} {% block content %}

Profile Settings

Manage your account information and preferences

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}

Profile Information

Custom ID cannot be changed

Change Password

Password must be at least 6 characters long

Profile Summary

{{ current_user.full_name[0] if current_user.full_name else 'A' }}

{{ current_user.full_name or 'Admin User' }}

{{ current_user.email or 'No email set' }}

Role {{ 'Super Admin' if current_user.is_superadmin else 'Group Admin' }}
{% if current_user.custom_id %}
ID {{ current_user.custom_id }}
{% endif %} {% if current_user.group %}
Group {{ current_user.group.name }}
{% endif %}
Status Active
Member Since {{ current_user.join_date.strftime('%b %Y') if current_user.join_date else 'N/A' }}

Quick Actions

View Analytics
Notifications
{% if current_user.is_superadmin %}
Super Admin
{% endif %}
{% endblock %}