BookStack/resources/views/users/index.blade.php

42 lines
1.3 KiB
PHP
Raw Normal View History

2015-08-08 15:05:30 -04:00
@extends('base')
@section('content')
@include('settings/navbar', ['selected' => 'users'])
2015-08-08 15:05:30 -04:00
<div class="page-content">
<h1>Users</h1>
@if($currentUser->can('user-create'))
<p>
<a href="/users/create" class="text-pos"><i class="zmdi zmdi-account-add"></i>Add New User</a>
</p>
@endif
2015-08-08 15:05:30 -04:00
<table class="table">
<tr>
2015-08-23 08:41:35 -04:00
<th></th>
2015-08-08 15:05:30 -04:00
<th>Name</th>
<th>Email</th>
2015-08-29 10:03:42 -04:00
<th>User Type</th>
2015-08-08 15:05:30 -04:00
</tr>
@foreach($users as $user)
<tr>
2015-08-23 08:41:35 -04:00
<td style="line-height: 0;"><img class="avatar" src="{{$user->getAvatar(40)}}" alt="{{$user->name}}"></td>
2015-08-29 10:03:42 -04:00
<td>
@if($currentUser->can('user-update') || $currentUser->id == $user->id)
<a href="/users/{{$user->id}}">
@endif
{{$user->name}}
@if($currentUser->can('user-update') || $currentUser->id == $user->id)
</a>
@endif
</td>
2015-08-08 15:05:30 -04:00
<td>{{$user->email}}</td>
2015-08-29 10:03:42 -04:00
<td>{{ $user->role->display_name }}</td>
2015-08-08 15:05:30 -04:00
</tr>
@endforeach
</table>
</div>
@stop