{% extends 'base.html' %} {% load static %} {% block title %} Profile {% endblock %} {% block header %} {% include 'components/header.html' %} {% endblock %} {% block content %}

{{ customer.name }}


CNIC:

{{ customer.cnic }}

Email:

{{ customer.email }}

Phone No:

{{ customer.PhoneNo }}

Address :

{{ customer.address }}

{% if customer.is_corporate %}
NTN :

{{ customer.NTN }}

STRN :

{{ customer.STRN }}

Registered Address :

{{ customer.registered_address }}

{% endif %} {% for asset in assets %}
Number of {{ asset.asset.name}} :

{{ asset.amount }}

{% endfor %}
Monthly Bill :

{{ customer.MonthlyBill }}

Amount Due :

{{ customer.AmountDue }}



{% csrf_token %}
{% load crispy_forms_tags %}
{{ info_form|crispy }}
{{ product_form|crispy }}
{% endblock %} {% block footer %} {% include 'components/footer.html' %} {% endblock %}