mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 16:44:50 +00:00
114 lines
3.1 KiB
PHP
114 lines
3.1 KiB
PHP
@extends('admin.partial.template-full')
|
|
|
|
@section('header')
|
|
<div class="bg-primary">
|
|
<div class="container">
|
|
<div class="my-5">test</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|
|
@section('section')
|
|
<div class="title">
|
|
<h3 class="font-weight-bold">Users</h3>
|
|
</div>
|
|
<hr>
|
|
<div class="table-responsive">
|
|
<table class="table">
|
|
<thead class="bg-light">
|
|
<tr class="text-center">
|
|
<th scope="col" class="border-0" width="10%">
|
|
<span>ID</span>
|
|
</th>
|
|
<th scope="col" class="border-0" width="30%">
|
|
<span>Username</span>
|
|
</th>
|
|
<th scope="col" class="border-0" width="30%">
|
|
<span>Actions</span>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($users as $user)
|
|
@if($user->status == 'deleted')
|
|
<tr class="font-weight-bold text-center user-row">
|
|
<th scope="row">
|
|
<span class="text-danger" class="text-monospace">{{$user->id}}</span>
|
|
</th>
|
|
<td class="text-left">
|
|
<img src="/storage/avatars/default.png?v=3" width="28px" class="rounded-circle mr-2" style="border:1px solid #ccc">
|
|
<span title="{{$user->username}}" data-toggle="tooltip" data-placement="bottom">
|
|
<span class="text-danger">{{$user->username}}</span>
|
|
</span>
|
|
</td>
|
|
<td>
|
|
<span class="font-weight-bold small">
|
|
<span class="text-danger">Account Deleted</span>
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
@else
|
|
<tr class="font-weight-bold text-center user-row">
|
|
<th scope="row">
|
|
<span class="text-monospace">{{$user->id}}</span>
|
|
</th>
|
|
<td class="text-left">
|
|
<img src="{{$user->profile->avatarUrl()}}" width="28px" class="rounded-circle mr-2" style="border:1px solid #ccc">
|
|
<span title="{{$user->username}}" data-toggle="tooltip" data-placement="bottom">
|
|
<span>{{$user->username}}</span>
|
|
@if($user->is_admin)
|
|
<i class="text-danger fas fa-certificate" title="Admin"></i>
|
|
@endif
|
|
</span>
|
|
</td>
|
|
<td>
|
|
<span class="action-row font-weight-lighter">
|
|
<a href="{{$user->url()}}" class="pr-2 text-muted small font-weight-bold" title="View Profile" data-toggle="tooltip" data-placement="bottom">
|
|
Profile
|
|
</a>
|
|
|
|
<a href="/i/admin/users/show/{{$user->id}}" class="pr-2 text-muted small font-weight-bold" title="Profile Review" data-toggle="tooltip" data-placement="bottom">
|
|
Review
|
|
</a>
|
|
|
|
<a href="/i/admin/users/modlogs/{{$user->id}}" class="pr-2 text-muted small font-weight-bold" title="Moderation Logs" data-toggle="tooltip" data-placement="bottom">
|
|
Mod Logs
|
|
</a>
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
@endif
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="d-flex justify-content-center mt-5 small">
|
|
{{$users->links()}}
|
|
</div>
|
|
@endsection
|
|
|
|
@push('styles')
|
|
<style type="text/css">
|
|
.user-row:hover {
|
|
background-color: #eff8ff;
|
|
}
|
|
.user-row:hover .action-row {
|
|
display: block;
|
|
}
|
|
.user-row:hover .last-active {
|
|
display: none;
|
|
}
|
|
</style>
|
|
@endpush
|
|
@push('scripts')
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
$('.human-size').each(function(d,a) {
|
|
let el = $(a);
|
|
let size = el.data('bytes');
|
|
el.text(filesize(size, {round: 0}));
|
|
});
|
|
});
|
|
</script>
|
|
@endpush
|