{% extends 'stela_control/index.html' %} {% load i18n %} {% load static %} {% load humanize %} {% load crispy_forms_tags %} {% block side_title %} {% if call == "subs" %}

STELA {% trans "CONTROL DYNAMIC" %} | {% trans "Subscribers" %}

{% else %}

STELA {% trans "CONTROL DYNAMIC" %} | {% trans "Users Control" %}

{% endif %} {% endblock %} {% block title %} {% if userdata.is_superuser is True %}

{% trans "Superuser" %} # {{userdata.id}} {{userdata.username}}

{% else %}

{% trans "User" %} # {{userdata.id}} {{userdata.username}}

{% endif %} {% endblock %} {% block section_content %}
{% trans "Last Login" %}: {{userdata.last_login|naturaltime}}

{% trans "Balance" %}

    {% if cloud.purchase > 0 %}
  • {% trans "Cloud" %}: ${{cloud.purchase}}
  • {% else %}
  • {% trans "Cloud" %}: {% trans "No Purchase Yet" %}
  • {% endif %} {% if stela.purchase > 0 %}
  • Stela: ${{stela.purchase}}
  • {% else %}
  • Stela: {% trans "No Purchase Yet" %}
  • {% endif %} {% if store.purchase > 0 %}
  • Store: ${{store.purchase}}
  • {% else %}
  • Store: {% trans "No Purchase Yet" %}
  • {% endif %} {% if total.purchase > 0 %}

    {% trans "Total Purchase" %}: ${{total.purchase}}

    {% else %}

    {% trans "Total Purchase" %}: {% trans "No Purchase Yet" %}

    {% endif %}

{% trans "Address" %}

{{userdata.address}}

{% trans "City" %}

{{userdata.city_profile}}

{% trans "Country" %}

{{userdata.country_profile}}

  • {% trans "Full Name" %}: {{userdata.full_name}}
  • {% trans "Phone" %}: {{userdata.phone_number}}
  • {% trans "Email" %}: {{userdata.email}}
{% endblock %} {% block scripts %} {% endblock %}