{% extends 'layout/default.html' %} {% load i18n %} {% block title %}{% translate "Profile" %}{% endblock %} {% block breadcumbheading %} {% translate "Manage Profile" %} {% endblock %} {% block breadcumbfirst %} Manage Profiles {% endblock %} {% block breadcumbaddmore %} {% endblock %} {% block content %} {% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
image
{% if not user.is_superuser and not user.role == 1%}
{{user_info.total_amount}}
Total
{{user_info.due_amount}}
Due
{{user_info.total_paid_amount}}
Paid
{% endif %}

Profile Details

Edit Profile
{% if user_info.first_name %}
{{ user_info.first_name }} {{ user_info.last_name }}
{% endif %} {% if user_info.company_name %}
{{ user_info.company_name }}
{% endif %}
{{ user_info.phone1 }}
{% if user_info.website %} {% endif %}
{{ user_info.country }}
{{user_info.email }}
Yes
{% endblock content %}