diff options
author | zotlabs <mike@macgirvin.com> | 2017-05-02 12:46:50 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-05-02 12:46:50 -0700 |
commit | 80ec92ce8d9f615eeb06d92b67ad1ff840cad0cc (patch) | |
tree | 484f2101b78ae16f397310470b7e30f2c03d7b57 /view/tpl/admin_accounts.tpl | |
parent | 83c4dd6bda1677a3441d06247ea076094394703e (diff) | |
download | volse-hubzilla-80ec92ce8d9f615eeb06d92b67ad1ff840cad0cc.tar.gz volse-hubzilla-80ec92ce8d9f615eeb06d92b67ad1ff840cad0cc.tar.bz2 volse-hubzilla-80ec92ce8d9f615eeb06d92b67ad1ff840cad0cc.zip |
Revert "move theme specific files to theme dir"
This reverts commit e332d1074f1b663ec66d37b0f575df2e41d5535c.
Diffstat (limited to 'view/tpl/admin_accounts.tpl')
-rwxr-xr-x | view/tpl/admin_accounts.tpl | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/view/tpl/admin_accounts.tpl b/view/tpl/admin_accounts.tpl new file mode 100755 index 000000000..3535363a0 --- /dev/null +++ b/view/tpl/admin_accounts.tpl @@ -0,0 +1,88 @@ +<script> + function confirm_delete(uname){ + return confirm( "{{$confirm_delete}}".format(uname)); + } + function confirm_delete_multi(){ + return confirm("{{$confirm_delete_multi}}"); + } + function toggle_selectall(cls){ + $("."+cls).prop("checked", !$("."+cls).prop("checked")); + return false; + } +</script> +<div class="generic-content-wrapper-styled" id="adminpage"> + <h1>{{$title}} - {{$page}}</h1> + + <form action="{{$baseurl}}/admin/accounts" method="post"> + <input type="hidden" name="form_security_token" value="{{$form_security_token}}"> + + <h3>{{$h_pending}}</h3> + {{if $pending}} + <table id="pending"> + <thead> + <tr> + {{foreach $th_pending as $th}}<th>{{$th}}</th>{{/foreach}} + <th></th> + <th></th> + </tr> + </thead> + <tbody> + {{foreach $pending as $u}} + <tr> + <td class="created">{{$u.account_created}}</td> + <td class="email">{{$u.account_email}}</td> + <td class="checkbox_bulkedit"><input type="checkbox" class="pending_ckbx" id="id_pending_{{$u.hash}}" name="pending[]" value="{{$u.hash}}"></td> + <td class="tools"> + <a href="{{$baseurl}}/regmod/allow/{{$u.hash}}" class="btn btn-outline-secondary btn-sm" title="{{$approve}}"><i class="fa fa-thumbs-o-up admin-icons"></i></a> + <a href="{{$baseurl}}/regmod/deny/{{$u.hash}}" class="btn btn-outline-secondary btn-sm" title="{{$deny}}"><i class="fa fa-thumbs-o-down admin-icons"></i></a> + </td> + </tr> + {{/foreach}} + </tbody> + </table> + <div class="selectall"><a href="#" onclick="return toggle_selectall('pending_ckbx');">{{$select_all}}</a></div> + <div class="submit"><input type="submit" name="page_users_deny" value="{{$deny}}"> <input type="submit" name="page_users_approve" value="{{$approve}}"></div> + {{else}} + <p>{{$no_pending}}</p> + {{/if}} + + + <h3>{{$h_users}}</h3> + {{if $users}} + <table id="users"> + <thead> + <tr> + {{foreach $th_users as $th}}<th><a href="{{$base}}&key={{$th.1}}&dir={{$odir}}">{{$th.0}}</a></th>{{/foreach}} + <th></th> + <th></th> + </tr> + </thead> + <tbody> + {{foreach $users as $u}} + <tr> + <td class="account_id">{{$u.account_id}}</td> + <td class="email">{{if $u.blocked}} + <a href="admin/account_edit/{{$u.account_id}}"><i>{{$u.account_email}}</i></a> + {{else}} + <a href="admin/account_edit/{{$u.account_id}}"><strong>{{$u.account_email}}</strong></a> + {{/if}}</td> + <td class="channels">{{$u.channels}}</td> + <td class="register_date">{{$u.account_created}}</td> + <td class="login_date">{{$u.account_lastlog}}</td> + <td class="account_expires">{{$u.account_expires}}</td> + <td class="service_class">{{$u.account_service_class}}</td> + <td class="checkbox_bulkedit"><input type="checkbox" class="users_ckbx" id="id_user_{{$u.account_id}}" name="user[]" value="{{$u.account_id}}"><input type="hidden" name="blocked[]" value="{{$u.blocked}}"></td> + <td class="tools"> + <a href="{{$baseurl}}/admin/accounts/{{if ($u.blocked)}}un{{/if}}block/{{$u.account_id}}?t={{$form_security_token}}" class="btn btn-outline-secondary btn-sm" title='{{if ($u.blocked)}}{{$unblock}}{{else}}{{$block}}{{/if}}'><i class="fa fa-ban admin-icons{{if ($u.blocked)}} dim{{/if}}"></i></a><a href="{{$baseurl}}/admin/accounts/delete/{{$u.account_id}}?t={{$form_security_token}}" class="btn btn-outline-secondary btn-sm" title='{{$delete}}' onclick="return confirm_delete('{{$u.name}}')"><i class="fa fa-trash-o admin-icons"></i></a> + </td> + </tr> + {{/foreach}} + </tbody> + </table> + <div class="selectall"><a href="#" onclick="return toggle_selectall('users_ckbx');">{{$select_all}}</a></div> + <div class="submit"><input type="submit" name="page_users_block" value="{{$block}}/{{$unblock}}"> <input type="submit" name="page_users_delete" value="{{$delete}}" onclick="return confirm_delete_multi()"></div> + {{else}} + NO USERS?!? + {{/if}} + </form> +</div> |