{%- macro role_info(user) %} {% if user.edu_role.id > 0 %} {{ user.edu_role.name }} {% endif %} {% if user.admin_role.id > 0 %} {{ user.admin_role.name }} {% endif %} {%- endmacro %} {%- macro status_info(user) %} {% if user.locked == 0 %} 正常 {% else %} 锁定 {% endif %} {%- endmacro %} {%- macro vip_info(user) %} {% if user.vip == 1 %} vip {% endif %} {%- endmacro %}
用户管理
搜索用户 添加用户
{% for item in pager.items %} {% endfor %}
编号 昵称 角色 最后活跃 最后位置 状态 操作
{{ item.id }} {{ item.name }}{{ vip_info(item) }} {{ role_info(item) }} {{ date('Y-m-d H:i',item.last_active) }} {{ item.last_ip }} {{ status_info(item) }}
{{ partial('partials/pager') }} {{ partial('partials/ip2region') }}