{% extends "layouts/base.html" %} {% load static %} {% block title %}Delete Profile - {{ profile.user.get_full_name|default:profile.user.username }}{% endblock %} {% block extra_css %} {% endblock extra_css %} {% block breadcrumb %} {% endblock breadcrumb %} {% block content %}

Delete Profile

This action cannot be undone

{% if profile.avatar %} {{ profile.user.get_full_name|default:profile.user.username }} {% else %}
{% endif %}
{{ profile.user.get_full_name|default:profile.user.username }}

{{ profile.user.email }}

User {{ profile.user.username }}
Email {{ profile.user.email }}
{% if profile.phone_number %}
Phone {{ profile.phone_number }}
{% endif %} {% if profile.timezone %}
Timezone {{ profile.get_timezone_display|default:profile.timezone }}
{% endif %} {% if profile.language %}
Language {{ profile.get_language_display|default:profile.language }}
{% endif %}
Created {{ profile.created_at|date:"M d, Y"|default:"Unknown" }}
Warning: Permanent Deletion

You are about to permanently delete this user profile. This action will remove all profile-specific data and preferences.

The following will be permanently deleted:
  • Profile information and personal details
  • Profile avatar and uploaded images
  • User preferences and customizations
  • Timezone and language settings
  • Contact information and phone numbers
Note: The associated user account will remain active. Only the profile data will be deleted.
{% csrf_token %}
Cancel
{% endblock content %} {% block extra_js %} {% endblock extra_js %}