Added Server activity log
This commit is contained in:
19
application/views/server/activity.php
Normal file
19
application/views/server/activity.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<!-- $o = ORM::factory('STATUS') -->
|
||||
<table class="box-full">
|
||||
<tr>
|
||||
<td class="head" colspan="2">Server Activity</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="spacer"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Date</td>
|
||||
<td>Message</td>
|
||||
</tr>
|
||||
<?php $i=0; foreach ($o->activity() as $ao) { ?>
|
||||
<tr>
|
||||
<td class="data"><?php echo $ao->DISPLAY('DATE_TIME'); ?>
|
||||
<td class="data"><?php echo $ao->DISPLAY('MESSAGE'); ?>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
</table>
|
Reference in New Issue
Block a user