| Server IP : 162.214.74.102 / Your IP : 216.73.216.59 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/www/lrsys_apps/dialogo/application/plugins/module_fleet/views/ |
Upload File : |
<div class="row">
<div class="col-md-12">
<div class="ibox float-e-margins">
<div class="ibox-title">
<h5>{$_L['Fleets Vehicles']}</h5>
</div>
<!-- <h5>{$paginator['found']} {$_L['Records']}. {if $paginator['found'] > 0}{$_L['Page']} {$paginator['page']} {$_L['of']} {$paginator['lastpage']}.{/if}</h5> -->
<div class="ibox-content">
<a href="{$_url}module_fleet/vehicles/add" class="btn btn-success"><i class="fa fa-plus"></i> {$_L['Fleets Add New Vehicle']}</a>
<br>
<br>
<table class="table table-striped table-bordered">
<th>{$_L['Fleets Fuel']}</th>
<th>{$_L['Fleets Model']}</th>
<th>{$_L['Fleets Brand']}</th>
<th>{$_L['Fleets Board']}</th>
<th>{$_L['Fleets Renavam']}</th>
<th>{$_L['Fleets Acquisition Value']}</th>
<th>{$_L['Fleets Market Value']}</th>
<th>{$_L['Fleets Current Km']}</th>
<th>{$_L['Manage']}</th>
{foreach $vehicles as $v}
<tr>
<td>{$v['fuel']}</td>
<td>{$v['model']}</td>
<td>{$v['brand']}</td>
<td>{$v['board']}</td>
<td>{$v['renavam']}</td>
<td>{$_c['currency_code']} {number_format($v['acquisition_value'], 2, ',', '.')} </td>
<td>{$_c['currency_code']} {number_format($v['market_value'], 2, ',', '.')} </td>
<td>{number_format($v['current_km'], 0, ',', '.')} </td>
<td>
<a href="{$_url}module_fleet/vehicles/edit/{$v['id']}" class="btn btn-xs btn-warning"><i class="fa fa-pencil"></i> {$_L['Edit']}</a>
<a href='#' data-id="{$v['id']}" class="btn btn-xs btn-danger cdelete"><i class="fa fa-trash"></i> {$_L['Delete']}</a>
</td>
</tr>
{/foreach}
</table>
</div>
<!-- <div class="row">
<div class="col-md-12">
{$paginator['contents']}
</div>
</div> -->
</div>
</div>
</div>
<input type="hidden" id="_msg_add_new_vehicle_type" value="{$_L['Fleets Add New Vehicle Type']}">
<input type="hidden" id="_msg_name" value="{$_L['Name']}">
<input type="hidden" id="_msg_edit" value="{$_L['Edit']}">
<input type="hidden" id="_msg_ok" value="{$_L['OK']}">
<input type="hidden" id="_msg_cancel" value="{$_L['Cancel']}">