{% load staticfiles %} 暂无数据 {% for user in user_list %} {{ user.username }} {{ user.email }} {% if user.user_phone == "" %} 无 {% else %} {{user.user_phone}} {% endif %} {% if user.is_superuser == 1 %} 超级管理员 {% elif user.is_staff == 1 %} 管理员 {% else %} 用户 {% endif %} {% if user.user_agency.name == null %} 无 {% else %} {{user.user_agency.name}} {% endif %} {% if user.is_agency == True %} 是 {% else %} 否 {% endif %} {% if user.is_active == True %} 可用 {% else %} 不可用 {% endif %} {{ user.date_joined }} {% endfor %}