{%- macro gender_info(value) %} {% if value == 1 %} 男 {% elseif value == 2 %} 女 {% elseif value == 3 %} 密 {% endif %} {%- endmacro %} {%- 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 %}
编号 | 昵称 | 地区 | 性别 | 角色 | 状态 | 操作 |
---|---|---|---|---|---|---|
{{ item.id }} | {{ item.name }}{{ vip_info(item) }} | {% if item.location %} {{ item.location }} {% else %} N/A {% endif %} | {{ gender_info(item.gender) }} | {{ role_info(item) }} | {{ status_info(item) }} |