| Server IP : 162.214.74.102 / Your IP : 216.73.217.80 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/public_html/lrsys_apps/dialogo/application/plugins/module_arbo/views/ |
Upload File : |
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-body">
<form name="form-import" action="{U}module_arbo/arbo/view_post/{$form['form']['id']}" method="post">
<div class="row">
<div class="col-md-12">
<h4>
{if $type == 'proposals'}
{$_L['Detailed Proposal rental']}
{elseif $type == 'realestate'}
{$_L['Real estate registration detail']}
{/if}
</h4><br>
<a href="{U}module_arbo/arbo/listArbo/{$type}" class="btn btn-sm btn-primary">{$_L['Back']}</a>
<input type="submit" class="btn btn-sm btn-primary" value="salvar">
<a href="{U}module_arbo/arbo/send_gaia/{$form['form']['id']}" class="btn btn-sm btn-primary">{$_L['Send']}</a>
</div>
</div>
<br>
<div class="row">
<div class="col-md-12">
<h2>Logs de Envio</h2>
<table class="table table-bordered table-hover">
<thead>
<tr>
<th class="col-md-2">{$_L['Date']}</th>
<th class="col-md-5">{$_L['Description']}</th>
<th class="col-md-5">{$_L['Response']}</th>
</tr>
</thead>
<tbody>
{foreach $logs as $log}
<tr>
<td><b>{$log['date']}</b></td>
<td><b>{$log['description']}</b></td>
<td><b>{$log['status']}</b></td>
</tr>
{/foreach}
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2>Formulário</h2>
<table class="table table-bordered table-hover">
<thead>
<tr>
<th class="col-md-6">{$_L['Question']}</th>
<th class="col-md-6">{$_L['Response']}</th>
</tr>
</thead>
<tbody>
{foreach $form['form_data'] as $i => $item}
<tr>
<td><b>{$item['field']}</b></td>
{if $item['type'] != 'list' && $item['type'] != 'yesno'}
<td><input type="text" value="{$item['value']}" name="{$item['id']}" class="form-control"></td>
{else}
<td>{$item['value']}</td>
{/if}
</tr>
{/foreach}
</tbody>
</table>
</div>
</div>
</form>
</div>
</div>
</div>
</div>