2018-04-18 21:43:33 +02:00
|
|
|
<script type="text/javascript" src="view/theme/frio/js/mod_admin.js"></script>
|
|
|
|
<link rel="stylesheet" href="view/theme/frio/css/mod_admin.css" type="text/css" media="screen"/>
|
2018-04-18 17:52:34 +02:00
|
|
|
|
2018-04-18 21:43:33 +02:00
|
|
|
<div id="admin-users" class="adminpage generic-page-wrapper">
|
2018-04-19 18:17:46 +02:00
|
|
|
<h1>{{$title}} - {{$page}}</h1>
|
2018-04-18 17:52:34 +02:00
|
|
|
|
|
|
|
<form action="{{$baseurl}}/admin/users" method="post">
|
2018-04-18 21:43:33 +02:00
|
|
|
<input type="hidden" name="form_security_token" value="{{$form_security_token}}">
|
2018-04-18 17:52:34 +02:00
|
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
**
|
|
|
|
*
|
|
|
|
* PENDING Users table
|
|
|
|
*
|
|
|
|
**
|
|
|
|
-->
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading"><h3 class="panel-title">{{$h_pending}}</h3></div>
|
|
|
|
|
|
|
|
{{if $pending}}
|
2018-04-18 21:43:33 +02:00
|
|
|
<table id="pending" class="table table-hover">
|
2018-04-18 17:52:34 +02:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2018-04-19 18:17:46 +02:00
|
|
|
<th></th>
|
2018-04-18 17:52:34 +02:00
|
|
|
{{foreach $th_pending as $th}}<th>{{$th}}</th>{{/foreach}}
|
|
|
|
<th></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{foreach $pending as $u}}
|
|
|
|
<tr>
|
2018-04-19 18:17:46 +02:00
|
|
|
<td><input type="checkbox" class="pending_ckbx" id="id_pending_{{$u.hash}}" name="pending[]" value="{{$u.hash}}" /></td>
|
2018-04-18 17:52:34 +02:00
|
|
|
<td>{{$u.created}}</td>
|
2018-04-19 18:17:46 +02:00
|
|
|
<td>{{$u.name}}</td>
|
2018-04-18 17:52:34 +02:00
|
|
|
<td>{{$u.email}}</td>
|
|
|
|
<td>
|
2018-04-18 21:43:33 +02:00
|
|
|
<a href="{{$baseurl}}/regmod/allow/{{$u.hash}}" title="{{$approve}}"><i class="fa fa-thumbs-up" aria-hidden="true"></i></a>
|
|
|
|
<a href="{{$baseurl}}/regmod/deny/{{$u.hash}}" title="{{$deny}}"><i class="fa fa-thumbs-down" aria-hidden="true"></i></a>
|
2018-04-18 17:52:34 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr class="details">
|
2018-04-19 18:17:46 +02:00
|
|
|
<td></td>
|
2018-04-18 17:52:34 +02:00
|
|
|
<th>{{$pendingnotetext}}</th>
|
|
|
|
<td colspan="4">{{$u.note}}</td>
|
|
|
|
</tr>
|
|
|
|
{{/foreach}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2018-04-19 18:17:46 +02:00
|
|
|
<div class="panel-footer">
|
|
|
|
<div class="row">
|
2018-04-19 19:00:16 +02:00
|
|
|
<div class="col-xs-3">
|
2018-04-19 18:17:46 +02:00
|
|
|
<div class="btn-group" role="group">
|
|
|
|
<button type="button" class="btn btn-default selectall" data-select-all="pending_ckbx"><i class="fa fa-check-square-o" aria-hidden="true"></i></button>
|
|
|
|
<button type="button" class="btn btn-default selectnone" data-select-none="pending_ckbx"><i class="fa fa-square-o" aria-hidden="true"></i></button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-04-20 14:07:11 +02:00
|
|
|
<div class="col-xs-9 text-right">
|
2018-04-19 18:17:46 +02:00
|
|
|
<button type="submit" name="page_users_deny" class="btn btn-primary"><i class="fa fa-thumbs-down" aria-hidden="true"></i> {{$deny}}</button>
|
|
|
|
<button type="submit" name="page_users_approve" class="btn btn-warinig"><i class="fa fa-thumbs-up" aria-hidden="true"></i> {{$approve}}</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-04-18 17:52:34 +02:00
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
<div class="panel-body text-center text-muted">{{$no_pending}}</div>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
**
|
|
|
|
*
|
|
|
|
* USERS Table
|
|
|
|
*
|
|
|
|
**
|
|
|
|
-->
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading"><h3 class="panel-title">{{$h_users}}</h3></div>
|
|
|
|
{{if $users}}
|
|
|
|
|
2018-04-18 21:43:33 +02:00
|
|
|
<table id="users" class="table table-hover">
|
2018-04-18 17:52:34 +02:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2018-04-19 18:17:46 +02:00
|
|
|
<th></th>
|
2018-04-18 17:52:34 +02:00
|
|
|
<th></th>
|
|
|
|
{{foreach $th_users as $k=>$th}}
|
|
|
|
{{if $k < 2 || $order_users == $th.1 || ($k==5 && !in_array($order_users,[$th_users.2.1, $th_users.3.1, $th_users.4.1])) }}
|
2018-04-20 14:07:11 +02:00
|
|
|
<th class="th-{{$k}}">
|
2018-04-18 17:52:34 +02:00
|
|
|
<a href="{{$baseurl}}/admin/users/?o={{if $order_direction_users == "+"}}-{{/if}}{{$th.1}}">
|
|
|
|
{{if $order_users == $th.1}}
|
|
|
|
{{if $order_direction_users == "+"}}
|
|
|
|
↓
|
|
|
|
{{else}}
|
|
|
|
↑
|
|
|
|
{{/if}}
|
|
|
|
{{else}}
|
|
|
|
↕
|
|
|
|
{{/if}}
|
|
|
|
{{$th.0}}</a>
|
|
|
|
</th>
|
|
|
|
{{/if}}
|
|
|
|
{{/foreach}}
|
|
|
|
<th></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{foreach $users as $u}}
|
|
|
|
<tr id="user-{{$u.uid}}">
|
2018-04-18 21:43:33 +02:00
|
|
|
<td>
|
|
|
|
{{if $u.is_deletable}}
|
|
|
|
<input type="checkbox" class="users_ckbx" id="id_user_{{$u.uid}}" name="user[]" value="{{$u.uid}}"/>
|
|
|
|
{{else}}
|
|
|
|
|
|
|
|
{{/if}}
|
|
|
|
</td>
|
2018-04-20 14:07:11 +02:00
|
|
|
<td><img class="avatar-nano" src="{{$u.micro}}" title="{{$u.nickname}}"></td>
|
2018-04-18 17:52:34 +02:00
|
|
|
<td><a href="{{$u.url}}" title="{{$u.nickname}}"> {{$u.name}}</a></td>
|
|
|
|
<td>{{$u.email}}</td>
|
|
|
|
{{if $order_users == $th_users.2.1}}
|
2018-04-18 21:43:33 +02:00
|
|
|
<td>{{$u.register_date}}</td>
|
2018-04-18 17:52:34 +02:00
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{if $order_users == $th_users.3.1}}
|
2018-04-18 21:43:33 +02:00
|
|
|
<td>{{$u.login_date}}</td>
|
2018-04-18 17:52:34 +02:00
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{if $order_users == $th_users.4.1}}
|
2018-04-18 21:43:33 +02:00
|
|
|
<td>{{$u.lastitem_date}}</td>
|
2018-04-18 17:52:34 +02:00
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{if !in_array($order_users,[$th_users.2.1, $th_users.3.1, $th_users.4.1]) }}
|
2018-04-20 14:11:34 +02:00
|
|
|
|
|
|
|
<td>
|
|
|
|
<i class="fa
|
|
|
|
{{if $u.page_flags_raw==0}}fa-user{{/if}} {{* PAGE_NORMAL *}}
|
|
|
|
{{if $u.page_flags_raw==1}}fa-bullhorn{{/if}} {{* PAGE_SOAPBOX *}}
|
|
|
|
{{if $u.page_flags_raw==2}}fa-users{{/if}} {{* PAGE_COMMUNITY *}}
|
|
|
|
{{if $u.page_flags_raw==3}}fa-heart{{/if}} {{* PAGE_FREELOVE *}}
|
|
|
|
{{if $u.page_flags_raw==4}}fa-rss{{/if}} {{* PAGE_BLOG *}}
|
|
|
|
{{if $u.page_flags_raw==5}}fa-user-secret{{/if}} {{* PAGE_PRVGROUP *}}
|
|
|
|
" title="{{$u.page_flags}}"></i>
|
|
|
|
{{if $u.page_flags_raw==0 && $u.account_type_raw > 0}}
|
|
|
|
<i class="fa
|
|
|
|
{{if $u.account_type_raw==1}}fa-sitemap{{/if}} {{* ACCOUNT_TYPE_ORGANISATION *}}
|
|
|
|
{{if $u.account_type_raw==2}}fa-newspaper-o{{/if}} {{* ACCOUNT_TYPE_NEWS *}}
|
|
|
|
{{if $u.account_type_raw==3}}fa-comments{{/if}} {{* ACCOUNT_TYPE_COMMUNITY *}}
|
|
|
|
" title="{{$u.account_type}}"></i>
|
|
|
|
{{/if}}
|
|
|
|
{{if $u.is_admin}}<i class="fa fa-user-md text-primary" title="{{$siteadmin}}"></i>{{/if}}
|
|
|
|
{{if $u.account_expired}}<i class="fa fa-clock-o text-warning" title="{{$accountexpired}}"></i>{{/if}}
|
|
|
|
</td>
|
2018-04-18 17:52:34 +02:00
|
|
|
{{/if}}
|
|
|
|
<td class="text-right">
|
2018-04-19 19:00:16 +02:00
|
|
|
<button type="button" class="btn-link" onclick="return details({{$u.uid}})"><span class="caret"></span></button>
|
2018-04-18 17:52:34 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr id="user-{{$u.uid}}-detail" class="hidden details">
|
|
|
|
<td> </td>
|
|
|
|
<td colspan="4">
|
|
|
|
{{if $order_users != $th_users.2.1}}
|
|
|
|
<p><a href="{{$baseurl}}/admin/users/?o={{if $order_direction_users == "+"}}-{{/if}}{{$th_users.2.1}}">
|
|
|
|
↕ {{$th_users.2.0}}</a> : {{$u.register_date}}</p>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{if $order_users != $th_users.3.1}}
|
|
|
|
<p><a href="{{$baseurl}}/admin/users/?o={{if $order_direction_users == "+"}}-{{/if}}{{$th_users.3.1}}">
|
|
|
|
↕ {{$th_users.3.0}}</a> : {{$u.login_date}}</p>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{if $order_users != $th_users.4.1}}
|
|
|
|
<p><a href="{{$baseurl}}/admin/users/?o={{if $order_direction_users == "+"}}-{{/if}}{{$th_users.4.1}}">
|
|
|
|
↕ {{$th_users.4.0}}</a> : {{$u.lastitem_date}}</p>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{if in_array($order_users,[$th_users.2.1, $th_users.3.1, $th_users.4.1]) }}
|
|
|
|
<p><a href="{{$baseurl}}/admin/users/?o={{if $order_direction_users == "+"}}-{{/if}}{{$th_users.5.1}}">
|
2018-04-20 14:30:04 +02:00
|
|
|
↕ {{$th_users.5.0}}</a> : {{$u.page_flags}}{{if $u.page_flags_raw==0 && $u.account_type_raw > 0}}, {{$u.account_type}}{{/if}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} {{if $u.account_expired}}({{$accountexpired}}){{/if}}</p>
|
2018-04-18 17:52:34 +02:00
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
</td>
|
|
|
|
<td class="text-right">
|
|
|
|
{{if $u.is_deletable}}
|
2018-04-18 21:43:33 +02:00
|
|
|
<a href="{{$baseurl}}/admin/users/block/{{$u.uid}}?t={{$form_security_token}}" title="{{if $u.blocked}}{{$unblock}}{{else}}{{$block}}{{/if}}">
|
2018-04-18 17:52:34 +02:00
|
|
|
{{if $u.blocked==0}}
|
|
|
|
<i class="fa fa-ban" aria-hidden="true"></i>
|
|
|
|
{{else}}
|
|
|
|
<i class="fa fa-circle-o" aria-hidden="true"></i>
|
|
|
|
{{/if}}
|
|
|
|
</a>
|
2018-04-19 18:17:46 +02:00
|
|
|
<a href="{{$baseurl}}/admin/users/delete/{{$u.uid}}?t={{$form_security_token}}" title="{{$delete}}" onclick="return confirm_delete('{{$confirm_delete}}','{{$u.name}}')"><i class="fa fa-trash" aria-hidden="true"></i></a>
|
2018-04-18 17:52:34 +02:00
|
|
|
{{else}}
|
|
|
|
|
|
|
|
{{/if}}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{/foreach}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2018-04-19 18:17:46 +02:00
|
|
|
<div class="panel-footer">
|
|
|
|
<div class="row">
|
2018-04-19 19:00:16 +02:00
|
|
|
<div class="col-xs-3">
|
2018-04-19 18:17:46 +02:00
|
|
|
<div class="btn-group" role="group">
|
|
|
|
<button type="button" class="btn btn-default selectall" data-select-all="users_ckbx"><i class="fa fa-check-square-o" aria-hidden="true"></i></button>
|
|
|
|
<button type="button" class="btn btn-default selectnone" data-select-none="users_ckbx"><i class="fa fa-square-o" aria-hidden="true"></i></button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-04-19 19:00:16 +02:00
|
|
|
<div class="col-xs-9 text-right">
|
2018-04-19 18:17:46 +02:00
|
|
|
<button type="submit" name="page_users_block" class="btn btn-warning"> <i class="fa fa-ban" aria-hidden="true"></i> {{$block}} / <i class="fa fa-circle-o" aria-hidden="true"></i> {{$unblock}}</button>
|
|
|
|
<button type="submit" name="page_users_delete" class="btn btn-danger" onclick="return confirm_delete('{{$confirm_delete_multi}}')"><i class="fa fa-trash" aria-hidden="true"></i> {{$delete}}</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-04-18 17:52:34 +02:00
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
<div class="panel-body text-center bg-danger">NO USERS?!?</div>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
**
|
|
|
|
*
|
|
|
|
* DELETED Users table
|
|
|
|
*
|
|
|
|
**
|
|
|
|
-->
|
|
|
|
{{if $deleted}}
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading"><h3 class="panel-title">{{$h_deleted}}</h3></div>
|
2018-04-18 21:43:33 +02:00
|
|
|
<table id="deleted" class="table table-hover">
|
2018-04-18 17:52:34 +02:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th></th>
|
|
|
|
{{foreach $th_deleted as $k=>$th}}
|
|
|
|
{{if in_array($k,[0,1,5])}}
|
|
|
|
<th>{{$th}}</th>
|
|
|
|
{{/if}}
|
|
|
|
{{/foreach}}
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{foreach $deleted as $u}}
|
|
|
|
<tr>
|
2018-04-20 14:07:11 +02:00
|
|
|
<td><img class="avatar-nano" src="{{$u.micro}}" title="{{$u.nickname}}"></td>
|
2018-04-18 17:52:34 +02:00
|
|
|
<td><a href="{{$u.url}}" title="{{$u.nickname}}" >{{$u.name}}</a></td>
|
|
|
|
<td>{{$u.email}}</td>
|
|
|
|
<td>{{$u.deleted}}</td>
|
|
|
|
</tr>
|
|
|
|
{{/foreach}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
**
|
|
|
|
*
|
|
|
|
* NEW USER Form
|
|
|
|
*
|
|
|
|
**
|
|
|
|
-->
|
2018-04-19 18:17:46 +02:00
|
|
|
<form action="{{$baseurl}}/admin/users" method="post">
|
|
|
|
<input type="hidden" name="form_security_token" value="{{$form_security_token}}">
|
2018-04-18 17:52:34 +02:00
|
|
|
|
2018-04-19 18:17:46 +02:00
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading"><h3 class="panel-title">{{$h_newuser}}</h3></div>
|
|
|
|
<div class="panel-body">
|
|
|
|
{{include file="field_input.tpl" field=$newusername}}
|
|
|
|
{{include file="field_input.tpl" field=$newusernickname}}
|
|
|
|
{{include file="field_input.tpl" field=$newuseremail}}
|
|
|
|
</div>
|
|
|
|
<div class="panel-footer text-right">
|
|
|
|
<button type="submit" class="btn btn-primary">{{$submit}}</button>
|
|
|
|
</form>
|
2018-04-18 17:52:34 +02:00
|
|
|
</div>
|
2018-04-19 18:17:46 +02:00
|
|
|
</form>
|
|
|
|
|
|
|
|
</div>
|