mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
8e6248f57f
Also updated many styles within areas affected by the new permission and roles system.
32 lines
845 B
PHP
32 lines
845 B
PHP
@extends('base')
|
|
|
|
@section('content')
|
|
|
|
@include('settings/navbar', ['selected' => 'roles'])
|
|
|
|
<div class="container small">
|
|
|
|
<h1>User Roles</h1>
|
|
|
|
<p>
|
|
<a href="/settings/roles/new" class="text-pos"><i class="zmdi zmdi-lock-open"></i>Add new role</a>
|
|
</p>
|
|
|
|
<table class="table">
|
|
<tr>
|
|
<th>Role Name</th>
|
|
<th></th>
|
|
<th class="text-right">Users</th>
|
|
</tr>
|
|
@foreach($roles as $role)
|
|
<tr>
|
|
<td><a href="/settings/roles/{{ $role->id }}">{{ $role->display_name }}</a></td>
|
|
<td>{{ $role->description }}</td>
|
|
<td class="text-right">{{ $role->users->count() }}</td>
|
|
</tr>
|
|
@endforeach
|
|
</table>
|
|
</div>
|
|
|
|
@stop
|