mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
parent
e8b88f0b59
commit
c2f6ffc043
1 changed files with 28 additions and 27 deletions
|
@ -6,33 +6,34 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
<div class="table-responsive">
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<thead class="thead-dark">
|
<thead class="thead-dark">
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col">Username</th>
|
<th scope="col">Username</th>
|
||||||
<th scope="col">Statuses</th>
|
<th scope="col">Statuses</th>
|
||||||
<th scope="col">Storage</th>
|
<th scope="col">Storage</th>
|
||||||
<th scope="col">Role</th>
|
<th scope="col">Role</th>
|
||||||
<th scope="col">Created</th>
|
<th scope="col">Created</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@foreach($users as $user)
|
@foreach($users as $user)
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row">
|
<th scope="row">
|
||||||
<a href="{{$user->url()}}">
|
<a href="{{$user->url()}}">
|
||||||
{{$user->username}}
|
{{$user->username}}
|
||||||
</a>
|
</a>
|
||||||
</th>
|
</th>
|
||||||
<td>{{$user->profile->statuses->count()}}</td>
|
<td>{{$user->profile->statuses->count()}}</td>
|
||||||
<td><p class="human-size" data-bytes="{{App\Media::whereUserId($user->id)->sum('size')}}"></p></td>
|
<td><p class="human-size" data-bytes="{{App\Media::whereUserId($user->id)->sum('size')}}"></p></td>
|
||||||
<td>{!!$user->is_admin ? '<span class="text-danger">admin</span>' : 'member'!!}</td>
|
<td>{!!$user->is_admin ? '<span class="text-danger">admin</span>' : 'member'!!}</td>
|
||||||
<td>{{$user->created_at->diffForHumans(null, true, true)}}</td>
|
<td>{{$user->created_at->diffForHumans(null, true, true)}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
@endforeach
|
@endforeach
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
<div class="d-flex justify-content-center mt-5 small">
|
<div class="d-flex justify-content-center mt-5 small">
|
||||||
{{$users->links()}}
|
{{$users->links()}}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue