| 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/deals/ |
Upload File : |
<script type="text/javascript" src="/application/plugins/module_imobles/assets/js/dealsdocs-list.js"></script>
<input type="hidden" name="crm_account_id" id="crm_account_id" value="{$crm_account->id}">
<div class="wrapper wrapper-content" style="padding-bottom: 0;">
<div class="row">
<div class="col-md-12">
<div class="ibox float-e-margins">
<div class="ibox-content">
<div class="alert alert-danger" id="emsg_deal_docs">
<span id="emsgbody_deals_docs"></span>
</div>
<div>
<a href="#" class="add_doc btn btn-success">
<i class="fa fa-plus"></i> {$_L['module imobles Add docs']}
</a>
</div>
</div>
<div class="ibox-content">
<table class="table table-bordered table-hover sys_table" >
<thead>
<tr>
<td><i class="fa fa-ellipsis-v"></i></td>
<th>{$_L['Category']}</th>
<th>{$_L['module imobles date issued']}</th>
<th>{$_L['module imobles date validate']}</th>
<td><i class="fa fa-link"></i></td>
</tr>
</thead>
<tbody>
{if count($docs) > 0}
{foreach $docs as $d}
<tr>
<td>
<div class="btn-group dropdown">
<button class="btn btn-primary btn-xs dropdown-toggle"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<i class="fa fa-cog"></i> <span class="caret"></span>
</button>
<ul class="dropdown-menu" aria-labelledby="dropdown-list">
<li><a class="edit-doc" data-id="{$d['id']}" href="#"><i class="fa fa-edit"></i> {$_L['Edit']}</a></li>
<li><a class="delete_doc" data-id="{$d['id']}" href="#"><i class="fa fa-trash-o"></i> {$_L['Delete']}</a></li>
</ul>
</div>
</td>
<td>{$d['category_name']}</td>
<td>{if not empty($d['issued_date'])}{date( $_c['df'], strtotime($d['issued_date']))}{/if}</td>
<td>{if not empty($d['expiration_date'])}{date( $_c['df'], strtotime($d['expiration_date']))}{/if}</td>
<td>
<a href="{APP_URL}/application/plugins/module_imobles/uploads/deals/{$d['deal_id']}/{$d['src']}" class=" btn btn-info btn-xs" target="_blank">{$_L['module imobles docs open']}</a>
</td>
</tr>
{/foreach}
{else}
<tr>
<td colspan="8">
{$_L['No_Records_Found']}
</td>
</tr>
{/if}
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>