| Server IP : 162.214.74.102 / Your IP : 216.73.217.103 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/public_html/lrsys_apps/regional/application/plugins/module_billing/views/ |
Upload File : |
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-body">
<div class="row">
<br>
<div class="col-md-12"><small>{$_L['Page']} {$paginator->current_page} de {$paginator->total_pages}.</small></div>
</div>
<div class="row">
<div class="col-md-11">
<ul class="pagination pagination-xs margin-10px0">
{assign var=url value=U|cat:'module_billing/billing/history/'}
{$paginator->paginate($url)}
</ul>
</div>
</div>
<table class="table table-bordered table-hover">
<thead>
<tr>
<th>#</th>
<th>{$_L['Date']}</th>
<th>{$_L['Target']}</th>
<th>Url</th>
<th>{$_L['User']}</th>
<th>IP</th>
<th>{$_L['Description']}</th>
<th></th>
</tr>
</thead>
<tbody>
{if count($history) > 0}
{foreach $history as $item}
<tr>
<td>{$item['id']}</td>
<td>{date('d/m/Y H:i:s', strtotime($item['date']))}</td>
<td>{$item['target']}</td>
<td>{$item['url']}</td>
<td>{$item['username']}</td>
<td>{$item['ip']}</td>
<td>{substr($item['description'], 0, 35)} ...</td>
<td><a href="{U}module_billing/billing/history-view/{$item['id']}"
class="btn btn-sm btn-warning"><i class="fa fa-eye"> {$_L['View']}</i></a></td>
</tr>
{/foreach}
{else}
<tr>
<td colspan="12">{$_L['No records found']}.</td>
</tr>
{/if}
</tbody>
</table>
<div class="row">
<div class="col-md-12">
<ul class="pagination pagination-xs margin-10px0">
{$paginator->paginate($url)}
</ul>
</div>
</div>
</div>
</div>
</div>
</div>