{% extends 'admin_base_layout.html' %} {% load static %} {% block content %} Investment Edu | User Listing

User Management

{% csrf_token %}

Users

{% if cust_obj%} {% for cust in cust_obj %} {% endfor %}
Id UserName Email Phone Number Job Function Job Level Created Date Action
{{ cust.id }} {{ cust.username }} {{ cust.email }} {{ cust.phone_number }} {{ cust.job_function.title }} {{ cust.job_level.title }} {{ cust.start_date|date:"d M Y" }}
{% else %}

No data found

{% endif %}
{% if cust_obj %}
{% endif %}
{% endblock %}