{% extends 'base.html' %} {% load static %} {% load crispy_forms_tags %} {% block subtitle %} {{ user.username }} {% endblock %} {% block content %}

Go Back

{# IMAGE DIV #}
{% if user.profile_image %} user-image {% else %} no-user-image {% endif %}
{# NAME AND OTHER #}
{{ user.get_full_name }} - ( {{ user.username }} ) {% if user.is_active %} {% endif %}

registered on > {{ user.date_joined }}

Email

{{ user.email }}

Phone

{{ user.phone_number }}

Access Level

{% if user.is_superuser and user.is_staff %} Admin {% elif user.is_staff %} Staff {% else %} User {% endif %}

Last Login

{{ user.last_login }}

Profile

Update

Password

Change

{# STATISTICS #}

User Statistics

{% if statistic %}

Current TRX

{{ statistic.current_amount|floatformat:2 }}

Withdrawal TRX

{{ statistic.withdrawn_amount|floatformat:2 }}

Generated TRX

{{ statistic.generated_amount|floatformat:2 }}

Referral TRX

{{ statistic.referrals_amount }}

Referral Total

{{ statistic.referrals_total }}

Subscription Total

{{ statistic.subscription_total }}

Withdrawals Total

{{ statistic.withdrawals_total }}

{% else %}

Statistics are not available for this account - please consult developers

{% endif %}
{% endblock %}