{% extends 'website/home/base.html' %} {% load static %} {% block content %}
{% include 'website/customer/customer_dashboard_sidebar.html' %}

My Profile

Edit Profile
{{ customer.customer_name }}

{{ customer.customer_name|default:"N/A" }}

@{{ customer.username|default:"N/A" }}

Full Name

{{ customer.customer_name|default:"N/A" }}

Email Address

{{ customer.email|default:"N/A" }}

Mobile Number

{{ customer.mobile|default:"N/A" }}

Date of Birth

{{ customer.date_of_birth|date:"F d, Y"|default:"N/A" }}

Gender

{{ customer.gender|default:"N/A" }}

Address

{{ customer.address|default:"N/A" }}
{{ customer.district|default:"N/A" }} - {{ customer.zip_code|default:"N/A" }}

{% endblock %}