| 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_teammanagement/views/actionplan/ |
Upload File : |
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-body">
<a href="{$_url}module_teammanagement/actionplan/add" class="btn btn-success">
<i class="fa fa-plus"></i> {$_L['module_teammanagement new action plans']}
</a>
<a href="{$_url}module_teammanagement/configurationactionplan/listAll" class="btn btn-success">
<i class="fa fa-list"></i> {$_L['module_teammanagement List configuration action plans']}
</a>
</div>
<div class="panel-body">
<br/>
<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>{$_L['Description']}</th>
<th class="col-xs-1">{$_L['Action']}
<form action="{$_url}module_teammanagement/actionplan/delete" method="post" id="formdelete"></form>
</th>
</tr>
</thead>
<tbody>
{if count($actionplans) > 0}
{foreach $actionplans as $d}
<tr>
<td>{$d->id}</td>
<td>{$d->title}</td>
<td>{$d->description}</td>
<td class="project-actions col-xs-1">
<a href="{$_url}module_teammanagement/actionplan/edit/{$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>