]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/templates/admin/users/deleted.tpl
cc4fa5ac025abb5a6941d4062426e99a112ef723
[friendica.git] / view / theme / frio / templates / admin / users / deleted.tpl
1 <script type="text/javascript" src="view/theme/frio/js/mod_admin.js?v={{$smarty.const.FRIENDICA_VERSION}}"></script>
2 <link rel="stylesheet" href="view/theme/frio/css/mod_admin.css?v={{$smarty.const.FRIENDICA_VERSION}}" type="text/css" media="screen"/>
3
4 <div id="admin-users" class="adminpage generic-page-wrapper">
5         <h1>{{$title}} - {{$page}} ({{$count}})</h1>
6
7         <form action="{{$baseurl}}/{{$query_string}}" method="post">
8                 <input type="hidden" name="form_security_token" value="{{$form_security_token}}">
9
10                 <table id="deleted" class="table table-hover">
11                         <thead>
12                                 <tr>
13                                         <th></th>
14                                         {{foreach $th_deleted as $k=>$th}}
15                                                 {{if in_array($k,[0,1,5])}}
16                                                 <th>{{$th}}</th>
17                                                 {{/if}}
18                                         {{/foreach}}
19                                 </tr>
20                         </thead>
21                         <tbody>
22                         {{foreach $users as $u}}
23                                 <tr>
24                                         <td><img class="avatar-nano" src="{{$u.micro}}" title="{{$u.nickname}}"></td>
25                                         <td><a href="{{$u.url}}" title="{{$u.nickname}}">{{$u.name}}</a></td>
26                                         <td>{{$u.email}}</td>
27                                         <td>{{$u.deleted}}</td>
28                                 </tr>
29                         {{/foreach}}
30                         </tbody>
31                 </table>
32                 {{$pager nofilter}}
33         </form>
34 </div>