mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
27 lines
1.3 KiB
PHP
27 lines
1.3 KiB
PHP
<div class="flex-container-row item-list-row items-center wrap py-xs">
|
|
<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 }}">
|
|
<a href="{{ url("/settings/users/{$user->id}") }}">
|
|
{{ $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
|
|
</a>
|
|
</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> |