Merge pull request #5530 from tobiasd/20180730-adminblocked
enhance block users in admin panel
This commit is contained in:
commit
55c10a3fc9
|
@ -1881,6 +1881,7 @@ function admin_page_users(App $a)
|
|||
'$deny' => L10n::t('Deny'),
|
||||
'$delete' => L10n::t('Delete'),
|
||||
'$block' => L10n::t('Block'),
|
||||
'$blocked' => L10n::t('User blocked'),
|
||||
'$unblock' => L10n::t('Unblock'),
|
||||
'$siteadmin' => L10n::t('Site admin'),
|
||||
'$accountexpired' => L10n::t('Account expired'),
|
||||
|
|
|
@ -85,7 +85,7 @@
|
|||
<td class='register_date'>{{$u.register_date}}</td>
|
||||
<td class='login_date'>{{$u.login_date}}</td>
|
||||
<td class='lastitem_date'>{{$u.lastitem_date}}</td>
|
||||
<td class='login_date'>{{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} {{if $u.account_expired}}({{$accountexpired}}){{/if}}</td>
|
||||
<td class='login_date'>{{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} {{if $u.account_expired}}({{$accountexpired}}){{/if}} {{if $u.blocked}}{{$blocked}}{{/if}}</td>
|
||||
<td class="checkbox">
|
||||
{{if $u.is_deletable}}
|
||||
<input type="checkbox" class="users_ckbx" id="id_user_{{$u.uid}}" name="user[]" value="{{$u.uid}}"/></td>
|
||||
|
|
|
@ -335,6 +335,7 @@ li.icon.icon-large:before {
|
|||
.icon.drop:before { content: "\f014"; }
|
||||
.icon.drophide:before { content: "\f014"; }
|
||||
.icon.copy:before { content: "\f0c5"; }
|
||||
.icon.block:before { content: "\f05e"; }
|
||||
|
||||
.small-pencil:before, .savedsearchdrop:before {
|
||||
font-family: FontAwesome;
|
||||
|
|
Loading…
Reference in a new issue