{% extends "base.html" %} {% block content %}

用户列表

{% for user in users %}
{{ user.name | first | upper }}
{% endfor %} {% if users | length == 0 %}

暂无用户数据

{% endif %}
{% endblock content %}