{% extends 'custom_admin/base.html' %} {% load static %} {% block title %}Admin Profile{% endblock %} {% block page_title %}My Profile{% endblock %} {% block content %}

Admin Profile

Manage your personal information and account settings

Basic Information

{% if profile.profile_image %} Profile {% else %} {% endif %}

{{ user.get_full_name|default:user.username }}

@{{ user.username }}

{{ user.email }}

{{ user.first_name|default:"Not set" }}

{{ user.last_name|default:"Not set" }}

{{ user.email|default:"Not set" }}

{{ profile.phone|default:"Not set" }}

Change Password

Click "Change" to update your password

Profile Statistics

Total Activities {{ admin_stats.total_activities }}
Today's Activities {{ admin_stats.today_activities }}
Profile Created {{ admin_stats.profile_created|date:"M d, Y" }}
Last Updated {{ admin_stats.last_updated|date:"M d, Y" }}
{% if admin_stats.last_login %}
Last Login {{ admin_stats.last_login.timestamp|date:"M d, Y H:i" }}
{% endif %}

Recent Activities

{% if recent_activities %}
{% for activity in recent_activities %}
{% if activity.action == 'create' %} {% elif activity.action == 'update' %} {% elif activity.action == 'delete' %} {% elif activity.action == 'login' %} {% else %} {% endif %}

{{ activity.description }}

{{ activity.timestamp|timesince }} ago

{% endfor %}
{% else %}

No recent activities

{% endif %}
{% endblock %}