{% extends 'theme/dashborad_base.html' %} {% block page_title %}My Account{% endblock %} {% block page_subtitle %}Manage your profile information{% endblock %} {% block dashboard_content %}
{{ user.first_name.0 }}{{ user.last_name.0 }}

{{ user.get_full_name }}

{{ user.email }}

{% if profile %} {% if profile.is_business %} Business Account {% else %} Personal Account {% endif %} {% endif %}

Personal Information

First Name {{ user.first_name|default:"-" }}
Last Name {{ user.last_name|default:"-" }}
Email {{ user.email }}
Member Since {{ user.date_joined|date:"M d, Y" }}

Contact Information

{% if profile %}
Phone {{ profile.phone_number|default:"-" }}
{% if profile.job_title %}
Job Title {{ profile.job_title }}
{% endif %}
City {{ profile.city|default:"-" }}
Country {{ profile.country|default:"-" }}
{% else %}

No contact information available

{% endif %}
{% if profile.is_business %}

Business Information

Company Name {{ profile.company_name|default:"-" }}
Legal Name {{ profile.company_legal_name|default:"-" }}
Company Email {{ profile.company_email|default:"-" }}
VAT/Tax Number {{ profile.vat_tax_number|default:"-" }}
{% endif %} {% if profile %}

Address

{{ profile.street_address }}
{{ profile.city }}{% if profile.state_province %}, {{ profile.state_province }}{% endif %} {{ profile.zip_code }}
{{ profile.country }}

{% endif %}
{% endblock %}