| 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/rodeio/application/plugins/module_cms/views/image/ |
Upload File : |
<div class="panel panel-default">
<div class="panel-body">
<a href="{$_url}module_cms/category/add/" class="md-btn md-btn-primary"><i class="fa fa-plus"></i> {$_L['CMS_New_Category']}</a>
</div>
<div class="panel-body">
<form class="form-horizontal" method="post" action="{$_url}module_cms/category/filter/">
<div class="form-group">
<div class="col-md-12">
<div class="input-group">
<div class="input-group-addon">
<span class="fa fa-search"></span>
</div>
<input type="text" name="name" id="foo_filter" class="form-control" placeholder="{$_L['Search']}..."/>
</div>
</div>
</div>
</form>
<table class="table table-bordered table-hover sys_table footable" data-filter="#foo_filter" data-page-size="50">
<thead>
<tr>
<th>#</th>
<th>{$_L['CMS_Category_Title']}</th>
<th>{$_L['Status']}</th>
<th>{$_L['Action']}</th>
</tr>
</thead>
<tbody>
{foreach $categories as $category}
<tr>
<td>{$category->id}</td>
<td>{$category->title}</td>
<td>
{if ($category->status)}
{$status = $_L['Status_Active']}
{$class = 'btn-success'}
{else}
{$status = $_L['Status_Inactive']}
{$class = 'btn-danger'}
{/if}
<span class="btn {$class} btn-xs">
{$status}
</span>
</td>
<td class="project-actions col-xs-3">
<a href="{$_url}module_cms/category/edit/{$category->id}" class="btn btn-primary btn-sm"><i class="fa fa-pencil"></i> Edit </a>
<a href="#" class="btn btn-danger btn-sm cdelete" id="pid1"><i class="fa fa-trash"></i> Delete </a>
</td>
</tr>
{/foreach}
</tbody>
{*<tfoot>*}
{*<tr>*}
{*<td colspan="7">*}
{*<ul class="pagination">*}
{*</ul>*}
{*</td>*}
{*</tr>*}
{*</tfoot>*}
</table>
</div>
</div>