| 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/www/lrsys_apps/erp/ui/theme/lrsys/ |
Upload File : |
{include file="sections/header.tpl"}
<div class="row">
<div class="col-md-12">
<div class="ibox float-e-margins">
<div class="ibox-title">
<h5>{$_L['Manage_Users']}</h5>
</div>
<div class="ibox-content">
<a href="{$_url}settings/users-add" class="btn btn-primary"><i class="fa fa-plus"></i> {$_L['Add_New_User']}</a>
<br>
<br>
<table class="table table-striped table-bordered table-responsive">
<th style="width: 60px;">{$_L['Avatar']}</th>
<th>{$_L['Username']}</th>
<th>{$_L['Full_Name']}</th>
<th>{$_L['Type']}</th>
<th>{$_L['Manage']}</th>
{foreach $d as $ds}
<tr>
<td>{if $ds['img'] eq 'gravatar'}
<img src="http://www.gravatar.com/avatar/{($ds['username'])|md5}?s=60" class="img-circle" alt="{$user['fullname']}">
{elseif $ds['img'] eq ''}
<img src="{$app_url}ui/lib/imgs/default-user-avatar.png" style="max-height: 60px;" alt="">
{else}
<img src="{$ds['img']}" class="img-circle" style="max-height: 60px;" alt="{$ds['fullname']}">
{/if}</td>
<td>{$ds['username']}</td>
<td>{$ds['fullname']}</td>
<td>{ib_lan_get_line($ds['user_type'])}</td>
<td>
<a href="{$_url}settings/users-edit/{$ds['id']}" class="btn btn-inverse"><i class="fa fa-pencil"></i> </a>
{if ($_user['username']) neq ($ds['username'])}
<a href="{$_url}settings/users-delete/{$ds['id']}" id="{$ds['id']}" class="btn btn-danger cdelete"><i class="fa fa-trash"></i> </a>
{/if}
</td>
</tr>
{/foreach}
</table>
</div>
</div>
</div>
</div>
{include file="sections/footer.tpl"}