| 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/dialogo/application/plugins/module_teammanagement/views/content/ |
Upload File : |
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-body">
<h3> <i class="fa {$cat->icon}"></i> {$cat->title} </h3>
</div>
</div>
<div class="panel panel-default">
<div class="panel-body">
<a href="{$_url}module_teammanagement/content/add/{$cat->id}" class="btn btn-success">
<i class="fa fa-plus"></i> {$_L['module_teammanagement new content']}
</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 class="col-xs-1">#</th>
<th>{$_L['Title']}</th>
<th class="col-xs-1">{$_L['Type']}</th>
<th class="col-xs-1">{$_L['Action']}
<form action="{$_url}module_teammanagement/content/delete/{$cat->id}" method="post" id="formdelete"></form>
</th>
</tr>
</thead>
<tbody>
{if count($contents) > 0}
{foreach $contents as $d}
<tr>
<td>{$d->id}</td>
<td>{$d->title}</td>
<td>{$d->type}</td>
<td class="project-actions col-xs-1">
<a href="{$_url}module_teammanagement/content/edit/{$cat->id}/{$d->id}" class="btn btn-xs btn-warning"
data-toggle="tooltip" title="{$_L['Edit']}">
<i class="fa fa-pencil"></i>
</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>
</a>
</td>
</tr>
{/foreach}
{else}
<tr>
<td colspan="5">
{$_L['No_Records_Found']}
</td>
</tr>
{/if}
</tbody>
</table>
</div>
</div>
</div>
</div>