{% extends 'base.html' %} {% block title %}管理页面{% endblock %} {% block header %}

管理主页

{% endblock %} {% block content %}

用户列表

{% for user in users%} {% endfor %}
UID 用户名 邮箱 用户空间 操作
{{ user['user_id'] }} {{ user['user_name'] }} {{ user['user_mail'] }} {{ user['user_limit'] / 1024 / 1024 }}GB 删除 修改
新建用户
{% endblock %}