{% extends 'base.html' %} {% load mytags %} {% block content %} {% include 'nav_cat_bar.html' %}
{% for user in contacts.object_list %} {% endfor %}
用户名 姓名 部门 小组 角色 激活 操作
{{ user.username }} {{ user.name }} {{ user.dept.name }} {{ user.group.all | group_str2 }} {{ user.id | get_role }} {{ user.is_active|bool2str }} 详情 {% ifequal session_role_id 2 %} 编辑 删除 {% else %} 编辑 删除 {% endifequal %}
Showing {{ contacts.start_index }} to {{ contacts.end_index }} of {{ p.count }} entries
{% include 'paginator.html' %}
{% endblock %}