{% extends "admin/dashboard.html" %} {% load static %} {% block title %} Admin | Profile Details {% endblock title %} {% block content %}
{% if admin_profile.profile_image %} User Image {% else %} Default Image {% endif %}

{{ admin_profile.user.username|capfirst }}

{{ admin_profile.user.username }}

Personal Information

Username - {{ admin_profile.user.username|capfirst }}

Status - {% if admin_profile.user.is_active %} Active {% else %} Inactive {% endif %}

Change Password

{% csrf_token %}
{% endblock content %}