{% extends 'hosting_app/base_hosting.html' %} {% load static %} {% block title %}My Hosting Client Profile{% endblock %} {% block content %}
Hosting Client Account

My Hosting Client Profile

Manage your client identity, contact details, profile image, username, password, and hosting account information from one premium profile center.

Hosting Client Profile Image

Click the image to upload a new profile photo.

{{ client.full_name }}

{{ client.get_client_type_display }} {% if client.city %} · {{ client.city }} {% endif %} {% if client.country %} · {{ client.country }} {% endif %}

{% if client.is_active %} Active Profile {% else %} Inactive Profile {% endif %} {{ client.get_client_type_display }} {% if client.created_from_existing_profile %} Created From Existing Profile {% else %} Direct Hosting Client {% endif %}
Profile Information

Hosting Client Details

Core personal, contact, and client account information linked to your hosting profile.

Username
{{ request.user.username }}
Email
{{ client.email }}
Full Name
{{ client.full_name }}
Client Type
{{ client.get_client_type_display }}
Phone Number
{{ client.phone_number|default:"-" }}
WhatsApp Number
{{ client.whatsapp_number|default:"-" }}
Country
{{ client.country|default:"-" }}
City
{{ client.city|default:"-" }}
Client Status

Account & Source Status

Review the current platform status of your Hosting Client profile and how it was created.

Profile Active
{% if client.is_active %} Yes {% else %} No {% endif %}
Created From Existing Profile
{% if client.created_from_existing_profile %} Yes {% else %} No {% endif %}
Source Profile Type
{% if client.source_profile_type %} {{ client.get_source_profile_type_display }} {% else %} Direct Client {% endif %}
Hosting Activity

Your Hosting Client Snapshot

A quick overview of your hosting client account. Booking, quotation, event, and request details can later be connected to this section.

Client Type {{ client.get_client_type_display }}
Account State {% if client.is_active %} Live {% else %} Paused {% endif %}
Source ID {% if client.source_profile_id %} #{{ client.source_profile_id }} {% else %} - {% endif %}

As the Hosting App grows, this area can later display your event requests, venue interests, quotation history, selected hosting packages, and confirmed bookings.

{% if client.admin_note %}
Admin Note

Important Account Note

This note has been added by the platform administration team.

Note
{{ client.admin_note|linebreaksbr }}
{% endif %}
Created At
{{ client.created_at }}
Last Updated
{{ client.updated_at }}
Linked Account
{% if client.user %} {{ client.user.username }} {% else %} - {% endif %}
Source Profile ID
{{ client.source_profile_id|default:"-" }}
{% endblock %}