| Server IP : 162.214.74.102 / Your IP : 216.73.216.192 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/hering/application/plugins/module_fish/views/species/ |
Upload File : |
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-body">
<a href="{$_url}module_fish/species/add" class="btn btn-success">
<i class="fa fa-plus"></i> {$_L['Species_Add_Module']}
</a>
</div>
<div class="panel-body">
<table class="table table-bordered table-hover sys_table footable" data-filter="#foo_filter" data-page-size="50">
<thead>
<tr>
<th>#</th>
<th>{$_L['Species_Popular_Name']}</th>
<th>{$_L['Species_Scientific_Name']}</th>
<th>{$_L['Species_Food_Habit']}</th>
<th>{$_L['Species_Weight_Expenditure']}</th>
<th>{$_L['Species_Order']}</th>
<th>{$_L['Action']}</th>
</tr>
</thead>
<tbody>
{if count($species) > 0}
{foreach $species as $d}
<tr>
<td>{$d->id}</td>
<td>{$d->popular_name}</td>
<td>{$d->scientific_name}</td>
<td>
{foreach json_decode($d->food_habit, true) as $f}
<span class="badge badge-default">{$f}</span>
{/foreach}
</td>
<td>{$d->weight_expenditure}</td>
<td>{$d->order_specie}</td>
<td class="project-actions col-xs-3">
<a href="{$_url}module_fish/species/edit/{$d->id}" class="btn btn-xs btn-warning"
data-toggle="tooltip" title="{$_L['Edit']}">
<i class="fa fa-pencil"></i> {$_L['Edit']}
</a>
<a href="#" onclick="ConfirmDelete({$d->id})" class="btn btn-xs btn-danger"
id="c{$d->id}" data-toggle="tooltip" title="{$_L['Delete']}">
<i class="fa fa-trash"></i> {$_L['Delete']}
</a>
<form action="{$_url}module_fish/species/delete" method="post" id="formdelete"></form>
</td>
</tr>
{/foreach}
{else}
<tr>
<td colspan="8">
{$_L['No_Records_Found']}
</td>
</tr>
{/if}
</tbody>
</table>
</div>
</div>
</div>
</div>