add account list head abbr

This commit is contained in:
wangjiacai 2023-04-01 20:25:58 +08:00
parent 618752b568
commit 00fa3c26ce
2 changed files with 10 additions and 10 deletions

View File

@ -4,17 +4,17 @@
<h2 class="subtitle"> <h2 class="subtitle">
{% if user.is_authenticated and user.role == "admin" %} {% if user.is_authenticated and user.role == "admin" %}
<h3 class="subtitle">用户信息</h3> <h3 class="subtitle" style="text-align: left;">注册账户列表</h3>
<table class="table"> <table class="table" id="account-list-table">
<thead> <thead>
<tr> <tr>
<th scope="col">id</th> <th abbr="id" scope="col">id</th>
<th scope="col">邮箱</th> <th abbr="email" scope="col">邮箱</th>
<th scope="col">用户名</th> <th abbr="name" scope="col">用户名</th>
<th scope="col">角色</th> <th abbr="role" scope="col">角色</th>
<th scope="col">已激活</th> <th abbr="isActivated" scope="col">已激活</th>
<th style="display:none" scope="col">提交</th> <th abbr="btn-submit" style="display:none" scope="col">提交</th>
<th style="display:none" scope="col">删除</th> <th abbr="btn-delete" style="display:none" scope="col">删除</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>

View File

@ -9,7 +9,7 @@
<h3 class="subtitle" style="text-align: left;">服务状态:</h3> <h3 class="subtitle" style="text-align: left;">服务状态:</h3>
{% if user.role=='admin' %} {% if user.role=='admin' %}
<!-- admin --> <!-- admin -->
<h3 class="subtitle" style="text-align: left;">注册户列表:</h3> <h3 class="subtitle" style="text-align: left;">注册户列表:</h3>
<table class="table" id="account-list-table"> <table class="table" id="account-list-table">
<thead> <thead>
<tr> <tr>