{% extends 'layout.html' %} {% block head %} {% endblock %} {% block foot %} {% endblock %} {% block content %} {% include 'bread.html'%}
{% for user in users%} {% endfor %}
id 姓名 昵称 综合信息 权限 操作
{{ user.id }} {{ user.name }} {{ user.nickname }} {% if user.isAuthor %}作者{% endif %} {% if user.isAdmin %}管理员{% endif %} {% if !user.isAuthor %}设置为作者 | {% else%}删除作者 | {% endif %}删除
{% endblock %}