{% extends "admin_base.html" %} {% block nav_useradmin_class %}class="cur"{% endblock %} {% block left_panel %}

操作

{% endblock %} {% block right_panel %} {% if messages %} {% endif %}

所有用户

{% for user in users %} {% if user.props.is_active %} {% else %} {% endif %} {% endfor %}
邮箱 是否激活 操作
{{ user.props.email }}已激活激活 {% if not user.is_self %} 删除 密码重置 {% endif %}
{% if current_page != 1 %} 上一页 {% endif %} {% if page_next %} 下一页 {% endif %} 每页: {% if per_page == 25 %} 25 {% else %} 25 {% endif %} {% if per_page == 50 %} 50 {% else %} 50 {% endif %} {% if per_page == 100 %} 100 {% else %} 100 {% endif %}
{% endblock %} {% block extra_script %} {% endblock %}