2015-08-09 03:05:30 +08:00
|
|
|
@extends('base')
|
|
|
|
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
2015-08-30 22:31:16 +08:00
|
|
|
@include('settings/navbar', ['selected' => 'users'])
|
2015-08-09 03:05:30 +08:00
|
|
|
|
2015-09-03 23:51:10 +08:00
|
|
|
|
2015-12-31 05:38:20 +08:00
|
|
|
<div class="container small" ng-non-bindable>
|
2015-08-09 03:05:30 +08:00
|
|
|
<h1>Users</h1>
|
2016-02-28 03:24:42 +08:00
|
|
|
@if(userCan('users-manage'))
|
2015-08-30 22:31:16 +08:00
|
|
|
<p>
|
2016-02-17 05:25:11 +08:00
|
|
|
<a href="/settings/users/create" class="text-pos"><i class="zmdi zmdi-account-add"></i>Add new user</a>
|
2015-08-30 22:31:16 +08:00
|
|
|
</p>
|
|
|
|
@endif
|
2015-08-09 03:05:30 +08:00
|
|
|
<table class="table">
|
|
|
|
<tr>
|
2015-08-23 20:41:35 +08:00
|
|
|
<th></th>
|
2015-08-09 03:05:30 +08:00
|
|
|
<th>Name</th>
|
|
|
|
<th>Email</th>
|
2016-02-28 03:24:42 +08:00
|
|
|
<th>User Roles</th>
|
2015-08-09 03:05:30 +08:00
|
|
|
</tr>
|
|
|
|
@foreach($users as $user)
|
|
|
|
<tr>
|
2015-10-18 23:06:06 +08:00
|
|
|
<td style="line-height: 0;"><img class="avatar med" src="{{$user->getAvatar(40)}}" alt="{{$user->name}}"></td>
|
2015-08-29 22:03:42 +08:00
|
|
|
<td>
|
2016-02-28 03:24:42 +08:00
|
|
|
@if(userCan('users-manage') || $currentUser->id == $user->id)
|
2016-02-17 05:25:11 +08:00
|
|
|
<a href="/settings/users/{{$user->id}}">
|
2015-09-03 23:51:10 +08:00
|
|
|
@endif
|
2016-02-11 15:08:04 +08:00
|
|
|
{{ $user->name }}
|
2016-02-28 03:24:42 +08:00
|
|
|
@if(userCan('users-manage') || $currentUser->id == $user->id)
|
2016-02-11 15:08:04 +08:00
|
|
|
</a>
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td>
|
2016-02-28 03:24:42 +08:00
|
|
|
@if(userCan('users-manage') || $currentUser->id == $user->id)
|
2016-02-17 05:25:11 +08:00
|
|
|
<a href="/settings/users/{{$user->id}}">
|
2016-02-11 15:08:04 +08:00
|
|
|
@endif
|
|
|
|
{{ $user->email }}
|
2016-02-28 03:24:42 +08:00
|
|
|
@if(userCan('users-manage') || $currentUser->id == $user->id)
|
2015-08-29 22:03:42 +08:00
|
|
|
</a>
|
|
|
|
@endif
|
|
|
|
</td>
|
2016-02-28 03:24:42 +08:00
|
|
|
<td>
|
|
|
|
<small> {{ $user->roles->implode('display_name', ', ') }}</small>
|
|
|
|
</td>
|
2015-08-09 03:05:30 +08:00
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|