1
0
mirror of https://github.com/serghey-rodin/vesta.git synced 2025-03-12 04:36:25 -07:00

65 lines
3.2 KiB
HTML
Raw Normal View History

2013-02-24 18:10:10 +02:00
<table class="submenu">
2013-01-19 23:57:58 +04:00
<tr>
2013-02-24 18:10:10 +02:00
<td style="padding: 2px 0 0 6px">
<div class="submenu-search-block">
<form action="/search/" method="get">
<input type="text" name="q" class="submenu-search-field">
<input type="submit" value="<?php print _('Search');?>" class="submenu-button" style="width: 96px;">
2013-01-19 23:57:58 +04:00
</form>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<div id="vstobjects">
<table class='data'>
<?php
foreach ($data as $key => $value) {
++$i;
?>
<tr class="data-row">
<td class="data-dotted" style="padding: 0px 10px 0px 0px" width="150px">
<table class="data-col1" width="150">
2013-01-22 18:43:07 +02:00
<tr><td style="padding: 14 0 4 0;"><a class="data-date" title="<?php echo $data[$key]['DATE']." ".$data[$key]['TIME'] ?>"><?php echo strftime("%d %b %Y", strtotime($data[$key]['DATE']))?></a></td></tr>
2013-01-19 23:57:58 +04:00
<tr><td><a class="data-date" title="<?php echo $data[$key]['DATE']." ".$data[$key]['TIME'] ?>"><?php echo $data[$key]['TIME']?></a></td></tr>
</table>
</td>
<td class="data-dotted" width="830px" style="vertical-align:top;">
2013-01-29 00:18:09 +02:00
<div style="height:20px; width:20px;"></div>
2013-01-19 23:57:58 +04:00
<table class="data-col5" width="720px">
<tr>
<td class="username" style="padding: 0 0 20 0" >
<?php echo $data[$key]['CMD'] ?>
</td>
</tr>
</table>
</td>
</tr>
<?php
}
?>
</table>
<table class="data-count">
<tr>
<td width="160px"></td>
<td>
<?php
if ( $i == 1) {
echo _('one log record');
} else {
echo _('%s log records',$i);
}
?>
</td>
</tr>
</table>
</div>