{% extends 'admin/layout/admin_app.html' %} {% block content %} {% if messages %} {% endif %}

User View

{% if user.profile_picture %} User profile picture {% else %} {% load static %} User profile picture {% endif %}

{{ user.name }}

{{ user.email }}

{% for userActivity in userActivities %} {% endfor %}
Activity Type Description Created At
{{ userActivity.activity_type }} {{ userActivity.activity }} {{ userActivity.created_at }}
{% if userActivities.has_other_pages %}
    {% if userActivities.has_previous %} {% else %} {% endif %} {% for i in userActivities.paginator.page_range %} {% if userActivities.number == i %}
  • {{ i }}
  • {% else %}
  • {{ i }}
  • {% endif %} {% endfor %} {% if userActivities.has_next %} {% else %} {% endif %}
{% endif %}
{% for userReferral in userReferrals %} {% endfor %}
Name Email Created At Status
{{ userReferral.name }} {{ userReferral.email }} {{ userReferral.created_at }}
{% endblock %} {% block custom_js %} {% endblock %}