| 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/hexagon/application/plugins/module_forms/views/conditions/ |
Upload File : |
<div class="panel panel-default">
<div class="panel-heading">
<a href="{$_url}module_forms/conditions/add" class="btn btn-primary">{$_L['module_forms_new_condition']}</a>
</div>
<div class="panel-body">
<table class="table table-bordered table-hover">
<thead>
<tr>
<th>#</th>
{*<th>{$_L['Type']}</th>*}
<th>{$_L['Condition']}</th>
<th>{$_L['module_forms_operator']}</th>
<th>{$_L['Manage']}</th>
</tr>
</thead>
<tbody>
{foreach $conditions as $item}
<tr>
<td>{$item['id']}</td>
{*<td>{$item['type']}</td>*}
<td>{$item['condition']}</td>
<td>{$item['operator']}</td>
<td>
<a href="{$_url}module_forms/conditions/edit/{$item['id']}" class="btn btn-xs btn-warning"
data-toggle="tooltip" title="{$_L['Edit']}">
<i class="fa fa-pencil"></i> {$_L['Edit']}
</a>
<a href="{$_url}module_forms/conditions/delete/{$item['id']}" class="btn btn-xs btn-danger delete-type"
data-toggle="tooltip" title="{$_L['Delete']}">
<i class="fa fa-trash"></i> {$_L['Delete']}
</a>
</td>
</tr>
{/foreach}
</tbody>
</table>
</div>
</div>