{% extends 'base.html' %} {% load mytags %} {% block content %} {% include 'nav_cat_bar.html' %}
查看用户 show user info.
{% for user in contacts.object_list %} {% endfor %}
用户名 姓名 部门 小组 角色 激活 操作
{{ user.username }} {{ user.name }} {{ user.dept.name }} {{ user.id | groups_str }} {{ user.id | get_role }} {{ user.is_active|bool2str }} 详情 编辑 删除
Showing {{ contacts.start_index }} to {{ contacts.end_index }} of {{ p.count }} entries
    {% if contacts.has_previous %} {% else %} {% endif %} {% for page in page_range %} {% ifequal current_page page %}
  • {{ page }}
  • {% else %}
  • {{ page }}
  • {% endifequal %} {% endfor %} {% if contacts.has_next %} {% else %} {% endif %}
{% endblock %}