{% extends 'base.html' %} {% load static %} {% block style %} {% endblock %} {% block title %} Assets {% endblock %} {% block header %} {% include 'components/header.html' %} {% endblock %} {% block content %} {% if user.is_authenticated %}

Your Profile


Username:  {{ user.username }}

email:  {{ user.email }}

CNIC:  {{ user.cnic }}

Phone Number:  {{ user.PhoneNo }}

{% for asset in assets %} {% endfor %}
Name Code Total Amount
{{ asset.name }}
{{ asset.code }} {{ asset.total_amount }}
{% endif %}
{% endblock %} {% block footer %} {% include 'components/footer.html' %} {% endblock %}