|
Revision 726, 0.7 KB
(checked in by aprilp, 8 years ago)
|
|
* New stats system with graphs
* Changed the UI a bit to reflect this change
* Updated stylesheet
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | {if $error} |
|---|
| 2 | <div id="help"> |
|---|
| 3 | {$error} |
|---|
| 4 | </div> |
|---|
| 5 | {else} |
|---|
| 6 | |
|---|
| 7 | <fieldset class='pretty_fieldset'> |
|---|
| 8 | <legend>Online users</legend> |
|---|
| 9 | <table> |
|---|
| 10 | |
|---|
| 11 | <thead> |
|---|
| 12 | <tr> |
|---|
| 13 | <th>Node</th> |
|---|
| 14 | <th>Username</th> |
|---|
| 15 | <th>Origin</th> |
|---|
| 16 | <th>Logged in Since</th> |
|---|
| 17 | <th>Traffic IN/OUT</th> |
|---|
| 18 | </tr> |
|---|
| 19 | </thead> |
|---|
| 20 | |
|---|
| 21 | {section name=i loop=$users_array} |
|---|
| 22 | <tr class='{cycle values="odd,even"}'> |
|---|
| 23 | <td>{$users_array[i].name}</td> |
|---|
| 24 | <td><a href="user_log.php?user_id={$users_array[i].user_id}">{$users_array[i].username}</a></td> |
|---|
| 25 | <td>{$users_array[i].account_origin}</td> |
|---|
| 26 | <td>{$users_array[i].timestamp_in|date_format:"%Y/%m/%d %H:%M:%S"}</td> |
|---|
| 27 | <td>{$users_array[i].incoming}/{$users_array[i].outgoing}</td> |
|---|
| 28 | <td></td> |
|---|
| 29 | </tr> |
|---|
| 30 | {/section} |
|---|
| 31 | </table> |
|---|
| 32 | </fieldset> |
|---|
| 33 | |
|---|
| 34 | {/if} |
|---|