]> BookStack Code Mirror - bookstack/blobdiff - resources/views/form/entity-permissions.blade.php
Added select-all helpers to permission tables
[bookstack] / resources / views / form / entity-permissions.blade.php
index bb7d992f7356082e42786b26615b4bd4f2943815..6bb4b51ada62824b103fce9604b43209db24ebc4 100644 (file)
         ])
     </div>
 
-    {{--TODO - Add global and role "Select All" options--}}
-
-    <table class="table toggle-switch-list">
+    <table permissions-table class="table permissions-table toggle-switch-list">
         <tr>
             <th>{{ trans('common.role') }}</th>
-            <th @if($model->isA('page')) colspan="3" @else colspan="4" @endif>{{ trans('common.actions') }}</th>
+            <th @if($model->isA('page')) colspan="3" @else colspan="4" @endif>
+                {{ trans('common.actions') }}
+                <a href="#" permissions-table-toggle-all class="text-small ml-m text-primary">{{ trans('common.toggle_all') }}</a>
+            </th>
         </tr>
         @foreach($roles as $role)
             <tr>
-                <td>{{ $role->display_name }}</td>
+                <td width="33%" class="pt-m">
+                    {{ $role->display_name }}
+                    <a href="#" permissions-table-toggle-all-in-row class="text-small float right ml-m text-primary">{{ trans('common.toggle_all') }}</a>
+                </td>
                 <td>@include('form.restriction-checkbox', ['name'=>'restrictions', 'label' => trans('common.view'), 'action' => 'view'])</td>
                 @if(!$model->isA('page'))
                     <td>@include('form.restriction-checkbox', ['name'=>'restrictions', 'label' => trans('common.create'), 'action' => 'create'])</td>