diff options
Diffstat (limited to 'app/view')
-rw-r--r-- | app/view/templates/user.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/app/view/templates/user.php b/app/view/templates/user.php index 4717ee6..6e302f8 100644 --- a/app/view/templates/user.php +++ b/app/view/templates/user.php @@ -49,7 +49,7 @@ <table> <tr> -<th>id</th><th>password</th><th>hash</th><th>level</th><th>set expiration date</th><th>action</th><th>expire</th> +<th>id</th><th>password</th><th>hash</th><th>level</th><th>set expiration date</th><th>action</th><th>expire</th><th>connect</th> </tr> <tr> @@ -84,6 +84,10 @@ <td> </td> + <td> + + </td> + </form> </tr> @@ -138,6 +142,10 @@ foreach ($userlist as $user ) { <?= $user->expiredate('hrdi') ?> </td> + <td> + <?= $user->connectcount() ?> + </td> + </tr> |