2021-08-22 08:15:58 -04:00
|
|
|
@extends('layouts.simple')
|
2015-08-08 15:05:30 -04:00
|
|
|
|
2017-08-26 12:17:04 -04:00
|
|
|
@section('body')
|
2018-05-28 05:33:38 -04:00
|
|
|
<div class="container small">
|
2019-02-02 10:49:57 -05:00
|
|
|
|
2022-03-26 17:36:05 -04:00
|
|
|
@include('settings.parts.navbar', ['selected' => 'users'])
|
2019-02-02 10:49:57 -05:00
|
|
|
|
2019-08-25 10:44:51 -04:00
|
|
|
<main class="card content-wrap">
|
2019-02-02 10:49:57 -05:00
|
|
|
|
2021-05-26 10:19:26 -04:00
|
|
|
<div class="flex-container-row wrap justify-space-between items-center">
|
2019-02-02 10:49:57 -05:00
|
|
|
<h1 class="list-heading">{{ trans('settings.users') }}</h1>
|
2022-10-29 10:23:21 -04:00
|
|
|
<div>
|
|
|
|
<a href="{{ url("/settings/users/create") }}" class="outline button mt-none">{{ trans('settings.users_add_new') }}</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p class="text-muted">{{ trans('settings.users_index_desc') }}</p>
|
2019-02-02 10:49:57 -05:00
|
|
|
|
2022-10-29 10:23:21 -04:00
|
|
|
<div class="flex-container-row items-center justify-space-between gap-m mt-m mb-l wrap">
|
2021-05-26 10:19:26 -04:00
|
|
|
<div>
|
|
|
|
<div class="block inline mr-xs">
|
2019-08-04 09:26:39 -04:00
|
|
|
<form method="get" action="{{ url("/settings/users") }}">
|
2019-02-02 10:49:57 -05:00
|
|
|
<input type="text" name="search" placeholder="{{ trans('settings.users_search') }}" @if($listDetails['search']) value="{{$listDetails['search']}}" @endif>
|
|
|
|
</form>
|
2017-08-26 12:17:04 -04:00
|
|
|
</div>
|
2022-10-29 10:23:21 -04:00
|
|
|
</div>
|
|
|
|
<div class="justify-flex-end">
|
|
|
|
@include('common.sort', ['options' => [
|
|
|
|
'name' => trans('common.sort_name'),
|
|
|
|
'email' => trans('auth.email'),
|
|
|
|
'created_at' => trans('common.sort_created_at'),
|
|
|
|
'updated_at' => trans('common.sort_updated_at'),
|
|
|
|
'last_activity_at' => trans('settings.users_latest_activity'),
|
|
|
|
], 'order' => $listDetails['order'], 'sort' => $listDetails['sort'], 'type' => 'users'])
|
2016-05-22 05:44:31 -04:00
|
|
|
</div>
|
2019-02-02 10:49:57 -05:00
|
|
|
</div>
|
2016-05-22 05:44:31 -04:00
|
|
|
|
2022-10-29 10:23:21 -04:00
|
|
|
<div class="item-list">
|
2019-02-02 10:49:57 -05:00
|
|
|
@foreach($users as $user)
|
2022-10-29 10:23:21 -04:00
|
|
|
<div class="flex-container-row item-list-row items-center wrap py-s">
|
|
|
|
<div class="px-m py-xs flex-container-row items-center flex-2 gap-l min-width-m">
|
|
|
|
<img class="avatar med" width="40" height="40" src="{{ $user->getAvatar(40)}}" alt="{{ $user->name }}">
|
2021-01-17 08:41:43 -05:00
|
|
|
<a href="{{ url("/settings/users/{$user->id}") }}">
|
2021-07-14 15:18:48 -04:00
|
|
|
{{ $user->name }}
|
|
|
|
<br>
|
|
|
|
<span class="text-muted">{{ $user->email }}</span>
|
|
|
|
@if($user->mfa_values_count > 0)
|
|
|
|
<span title="MFA Configured" class="text-pos">@icon('lock')</span>
|
|
|
|
@endif
|
2021-01-17 08:41:43 -05:00
|
|
|
</a>
|
2022-10-29 10:23:21 -04:00
|
|
|
</div>
|
|
|
|
<div class="flex-container-row items-center flex-3 min-width-m">
|
|
|
|
<div class="px-m py-xs flex">
|
|
|
|
@foreach($user->roles as $index => $role)
|
|
|
|
<small><a href="{{ url("/settings/roles/{$role->id}") }}">{{$role->display_name}}</a>@if($index !== count($user->roles) -1),@endif</small>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
<div class="px-m py-xs flex text-right text-muted">
|
|
|
|
@if($user->last_activity_at)
|
|
|
|
<small>{{ trans('settings.users_latest_activity') }}</small>
|
|
|
|
<br>
|
|
|
|
<small title="{{ $user->last_activity_at->format('Y-m-d H:i:s') }}">{{ $user->last_activity_at->diffForHumans() }}</small>
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-02-02 10:49:57 -05:00
|
|
|
@endforeach
|
2022-10-29 10:23:21 -04:00
|
|
|
</div>
|
2017-08-26 12:17:04 -04:00
|
|
|
|
2019-02-02 10:49:57 -05:00
|
|
|
<div>
|
|
|
|
{{ $users->links() }}
|
2017-08-26 12:17:04 -04:00
|
|
|
</div>
|
2019-08-25 10:44:51 -04:00
|
|
|
</main>
|
2017-08-26 12:17:04 -04:00
|
|
|
|
2015-08-08 15:05:30 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|