{% extends 'cars/base.html' %} {% block title %}مدیریت کاربران{% endblock %} {% block content %}
لیست کاربران سیستم
{% for user in users %} {% endfor %}
نام کاربری نام کامل نقش استان تاریخ ثبت
{{ user.username }} {{ user.get_full_name }} {{ user.get_user_type_display }} {{ user.province }} {{ user.created_at|date:"Y/m/d" }}
{% endblock %}