{% extends "portal/hod_template/base.html" %} {% block main_content %}

General Information

Personal Details
First name: {{ object.user.first_name }}
Last name: {{ object.user.last_name }}
Username: {{ object.user.username }}
Email: {{ object.user.email }}
Phone Number: {{ object.phone }}

Billing

Status
{{object.status}}
Address
{% if object.billing_address %}
{{object.billing_address.name}}
{{object.billing_address.address_line1}}
{{object.billing_address.address_line2}}
{{object.billing_address.city}}
{{object.billing_address.state}}
{{object.billing_address.country}}
{{object.billing_address.postal_code}}
{% else %}
No address available
{% endif %}
{% endblock main_content %}