| 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/leo/application/plugins/module_imobles/views/task/ |
Upload File : |
<div class="row">
<div class="col-md-12">
<div class="ibox float-e-margins">
<div class="ibox-title">
<h5>{$_L['module imobles list task']}</h5>
</div>
<div class="ibox-content">
<div class='row'>
<div class="col-xs-12 ">
<a href="{$_url}{if isset($client)}{'client/'}{/if}module_imobles/task/add" class="btn btn-success">
<i class="fa fa-plus"></i> {$_L['module imobles Add task']}
</a>
<a href="{$_url}module_imobles/task/reorder" class="btn btn-primary"><i class="fa fa-download"></i> {$_L['Reorder']}</a>
</div>
</div>
<form action="{U}{if isset($client)}{'client/'}{/if}module_imobles/task/listAll" method="post" id="form-filter" class="search">
<br/>
<div class='row'>
<div class="col-xs-12 col-md-4">
<label> {$_L['Type']} </label>
<select name="type" id="type" class="form-control select2">
<option value=""> {$_L['Select']}</option>
<option value="credit_repair" {if in_array('credit_repair',$typeSelected) }selected{/if}> {$_L['credit_repair']}</option>
<option value="pre_sale" {if in_array('pre_sale',$typeSelected) }selected{/if}> {$_L['pre_sale'] }</option>
<option value='sale' {if in_array('sale',$typeSelected) }selected{/if}> {$_L['sale']}</option>
<option value="pos_sale" {if in_array('pos_sale',$typeSelected) }selected{/if}> {$_L['pos_sale']}</option>
</select>
</div>
<div class="col-sm-12 col-md-4">
<label class="control-label" for="title">
{$_L['module imobles task_category name']}
</label>
<select name="module_imobles_task_category_id" id="module_imobles_task_category_id" class="form-control ">
{if not empty($categorySelected)}
<option value="{$categorySelected->id}" selected> {$categorySelected->name}</option>
{/if}
</select>
</div>
<div class="col-xs-12 col-md-2 top5">
<br/>
<a class="btn btn-warning col-xs-12" id="filter-clear" href="#">
<i class="fa fa-eraser"></i> {$_L['Clean Filter']}
</a>
</div>
</div>
</form>
<br/><br/>
<table class="table table-striped table-bordered">
<tr>
<th>{$_L['Title']}</th>
<th>{$_L['module imobles task_category name']}</th>
<th>{$_L['Manage']}
<form action="{$_url}module_imobles/task/delete" method="post" id="formdelete"></form>
</th>
</tr>
{foreach $task as $g}
<tr>
<td>{$g['title']}</td>
<td>{$g['name_category']}</td>
<td class="col-xs-1">
<a href="{$_url}{if isset($client)}{'client/'}{/if}module_imobles/task/edit/{$g['id']}" class="btn btn-xs btn-warning "><i class="fa fa-pencil" data-toggle="tooltip" title="{$_L['Edit']}"></i> </a>
<a href="#" onclick="ConfirmDelete({$g['id']})" class="btn btn-xs btn-danger"
data-toggle="tooltip" title="{$_L['Delete']}">
<i class="fa fa-trash"></i>
</a>
</td>
</tr>
{/foreach}
</table>
</div>
</div>
</div>
</div>
<input type="hidden" name="_msg_add_new_task" id="_msg_add_new_task" value="{$_L['module imobles new task']}">
<input type="hidden" name="_msg_task_name" id="_msg_task_name" value="{$_L['module imobles task name']}">
<input type="hidden" name="_msg_edit" id="_msg_edit" value="{$_L['Edit']}">
<input type="hidden" name="_msg_ok" id="_msg_ok" value="{$_L['OK']}">
<input type="hidden" name="_msg_cancel" id="_msg_cancel" value="{$_L['Cancel']}">
<input type="hidden" name="_msg_save" id="_msg_save" value="{$_L['Save']}">