Add a column on User List page to display user's beans.
This commit is contained in:
parent
fc214ff751
commit
6712a4ad44
|
@ -663,6 +663,7 @@ class userManager:
|
|||
"%s"%(user.register_date),
|
||||
user.status,
|
||||
user.user_group,
|
||||
user.beans,
|
||||
'',
|
||||
]
|
||||
result["data"].append(userinfo)
|
||||
|
|
|
@ -83,6 +83,7 @@
|
|||
<th>RegisterDate</th>
|
||||
<th>Status</th>
|
||||
<th>Group</th>
|
||||
<th>Beans</th>
|
||||
<th>Command</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
@ -201,7 +202,7 @@
|
|||
}
|
||||
return str;
|
||||
},
|
||||
"targets": 8
|
||||
"targets": 9
|
||||
},
|
||||
]
|
||||
|
||||
|
|
Loading…
Reference in New Issue