| 
									
										
										
										
											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> | 
					
						
							| 
									
										
										
										
											2016-05-22 17:44:31 +08:00
										 |  |  |         <div class="row action-header"> | 
					
						
							|  |  |  |             <div class="col-sm-8"> | 
					
						
							| 
									
										
										
										
											2016-12-04 22:08:04 +08:00
										 |  |  |                 <h1>{{ trans('settings.users') }}</h1> | 
					
						
							| 
									
										
										
										
											2016-05-22 17:44:31 +08:00
										 |  |  |             </div> | 
					
						
							|  |  |  |             <div class="col-sm-4"> | 
					
						
							|  |  |  |                 <p></p> | 
					
						
							|  |  |  |                 @if(userCan('users-manage')) | 
					
						
							| 
									
										
										
										
											2016-12-04 22:08:04 +08:00
										 |  |  |                     <a href="{{ baseUrl("/settings/users/create") }}" class="pos button float right"><i class="zmdi zmdi-account-add"></i>{{ trans('settings.users_add_new') }}</a> | 
					
						
							| 
									
										
										
										
											2016-05-22 17:44:31 +08:00
										 |  |  |                 @endif | 
					
						
							|  |  |  |             </div> | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         <div class="row"> | 
					
						
							|  |  |  |             <div class="col-sm-8"> | 
					
						
							|  |  |  |                 <div class="compact"> | 
					
						
							| 
									
										
										
										
											2016-09-18 01:22:04 +08:00
										 |  |  |                     {{ $users->links() }} | 
					
						
							| 
									
										
										
										
											2016-05-22 17:44:31 +08:00
										 |  |  |                 </div> | 
					
						
							|  |  |  |             </div> | 
					
						
							|  |  |  |             <div class="col-sm-4"> | 
					
						
							| 
									
										
										
										
											2016-08-14 19:29:35 +08:00
										 |  |  |                 <form method="get" class="float right" action="{{ baseUrl("/settings/users") }}"> | 
					
						
							| 
									
										
										
										
											2016-05-22 17:44:31 +08:00
										 |  |  |                     @foreach(collect($listDetails)->except('search') as $name => $val) | 
					
						
							| 
									
										
										
										
											2016-08-14 19:29:35 +08:00
										 |  |  |                         <input type="hidden" name="{{ $name }}" value="{{ $val }}"> | 
					
						
							| 
									
										
										
										
											2016-05-22 17:44:31 +08:00
										 |  |  |                     @endforeach | 
					
						
							| 
									
										
										
										
											2016-12-04 22:08:04 +08:00
										 |  |  |                     <input type="text" name="search" placeholder="{{ trans('settings.users_search') }}" @if($listDetails['search']) value="{{$listDetails['search']}}" @endif> | 
					
						
							| 
									
										
										
										
											2016-05-22 17:44:31 +08:00
										 |  |  |                 </form> | 
					
						
							|  |  |  |             </div> | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-09 03:05:30 +08:00
										 |  |  |         <table class="table"> | 
					
						
							|  |  |  |             <tr> | 
					
						
							| 
									
										
										
										
											2015-08-23 20:41:35 +08:00
										 |  |  |                 <th></th> | 
					
						
							| 
									
										
										
										
											2016-12-04 22:08:04 +08:00
										 |  |  |                 <th><a href="{{ sortUrl('/settings/users', $listDetails, ['sort' => 'name']) }}">{{ trans('auth.name') }}</a></th> | 
					
						
							|  |  |  |                 <th><a href="{{ sortUrl('/settings/users', $listDetails, ['sort' => 'email']) }}">{{ trans('auth.email') }}</a></th> | 
					
						
							|  |  |  |                 <th>{{ trans('settings.role_user_roles') }}</th> | 
					
						
							| 
									
										
										
										
											2015-08-09 03:05:30 +08:00
										 |  |  |             </tr> | 
					
						
							|  |  |  |             @foreach($users as $user) | 
					
						
							|  |  |  |                 <tr> | 
					
						
							| 
									
										
										
										
											2016-08-14 19:29:35 +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-08-14 19:29:35 +08:00
										 |  |  |                             <a href="{{ baseUrl("/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-08-14 19:29:35 +08:00
										 |  |  |                             <a href="{{ baseUrl("/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> | 
					
						
							| 
									
										
										
										
											2016-05-22 17:44:31 +08:00
										 |  |  |                         @foreach($user->roles as $index => $role) | 
					
						
							| 
									
										
										
										
											2016-08-14 19:29:35 +08:00
										 |  |  |                             <small><a href="{{ baseUrl("/settings/roles/{$role->id}") }}">{{$role->display_name}}</a>@if($index !== count($user->roles) -1),@endif</small> | 
					
						
							| 
									
										
										
										
											2016-05-22 17:44:31 +08:00
										 |  |  |                         @endforeach | 
					
						
							| 
									
										
										
										
											2016-02-28 03:24:42 +08:00
										 |  |  |                     </td> | 
					
						
							| 
									
										
										
										
											2015-08-09 03:05:30 +08:00
										 |  |  |                 </tr> | 
					
						
							|  |  |  |             @endforeach | 
					
						
							|  |  |  |         </table> | 
					
						
							| 
									
										
										
										
											2016-05-22 17:44:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         <div> | 
					
						
							| 
									
										
										
										
											2016-09-18 01:22:04 +08:00
										 |  |  |             {{ $users->links() }} | 
					
						
							| 
									
										
										
										
											2016-05-22 17:44:31 +08:00
										 |  |  |         </div> | 
					
						
							| 
									
										
										
										
											2015-08-09 03:05:30 +08:00
										 |  |  |     </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @stop |