mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 10:32:00 +01:00
31 lines
1.0 KiB
Smarty
31 lines
1.0 KiB
Smarty
|
|
<h4><?php print $text_online_users; ?>, <?php print $text_refresh_period; ?>: <?php print HEALTH_REFRESH; ?> sec</h4>
|
|
|
|
<div class="listarea">
|
|
|
|
<?php if(isset($users)){ ?>
|
|
|
|
<table id="ss1" class="table table-striped table-condensed">
|
|
<tr>
|
|
<th class="domaincell"><?php print $text_username; ?></th>
|
|
<th class="domaincell"><?php print $text_ipaddr; ?></th>
|
|
<th class="domaincell"><?php print $text_logged_in; ?></th>
|
|
<th class="domaincell"><?php print $text_last_activity; ?></th>
|
|
</tr>
|
|
|
|
<?php foreach($users as $user) { ?>
|
|
<tr>
|
|
<td class="domaincell"><?php print $user['username']; ?></td>
|
|
<td class="domaincell"><?php if(DEMO_MODE == 1) { print anonimize_ip_addr($user['ipaddr']); } else { print $user['ipaddr']; } ?></td>
|
|
<td class="domaincell"><?php print date(DATE_TEMPLATE . " H:i:s", $user['ts']); ?></td>
|
|
<td class="domaincell"><?php print date(DATE_TEMPLATE . " H:i:s", $user['last_activity']); ?></td>
|
|
</tr>
|
|
<?php } ?>
|
|
|
|
</table>
|
|
|
|
<?php } ?>
|
|
|
|
</div>
|
|
|