{% extends "AppBundle::layout.html.twig" %} {% block content_title %}用户列表添加{% endblock %} {% block sub_body %}
{% for user in users %} {% endfor %}
ID 用户名 邮箱 状态 操作
{{ user.id }} {{ user.username }} {{ user.email }} {% if user.enabled %} {% if user.superAdmin %} 超级管理员 {% endif %} {% else %}{% endif %} 修改 {% if user.superAdmin %} 删除 {% endif %} {% if not user.superAdmin %} 删除 {% endif %}
{% endblock sub_body %}