From d009c66c8ba6192827e88c55b80bae8558f04627 Mon Sep 17 00:00:00 2001 From: snipe Date: Thu, 21 Apr 2016 21:53:31 -0700 Subject: [PATCH] Fixed bulk user delete display --- .../views/users/confirm-bulk-delete.blade.php | 130 +++++++++--------- 1 file changed, 65 insertions(+), 65 deletions(-) diff --git a/resources/views/users/confirm-bulk-delete.blade.php b/resources/views/users/confirm-bulk-delete.blade.php index 5a17ca3291..1da3785eac 100644 --- a/resources/views/users/confirm-bulk-delete.blade.php +++ b/resources/views/users/confirm-bulk-delete.blade.php @@ -2,34 +2,26 @@ {{-- Page title --}} @section('title') -Bulk Edit/Delete +Bulk Edit/Delete @parent @stop {{-- Page content --}} @section('content') - -
- - +
+
+
+
+ + + + - -
-
-
+
WARNING: You are about to delete the {{ count($users) }} user(s) listed below. Admin names are highlighted in red. @@ -37,62 +29,70 @@ Bulk Edit/Delete
@if (config('app.lock_passwords')) -

Note: This feature is disabled on the demo.

+
+
+

{{ trans('feature_disabled') }}

+
+
@endif -
- - - - - - - - - - - - - - - - @foreach ($users as $user) - - - + + + @endforeach + +
NameGroups
- Update all assets for these users to this status: - - {{ Form::select('status_id', $statuslabel_list , Input::old('status_id'), array('class'=>'select2', 'style'=>'width:350px')) }} -
- @if (Auth::user()->id!=$user->id) - - @else - - @endif - - id==$user->id ? ' style="text-decoration: line-through"' : '') }}>{{ $user->fullName() }} +
+
+ + + + + + + + + + + - + + + + @foreach ($users as $user) + + + - - @endforeach - -
NameGroups
+ {{ Form::select('status_id', $statuslabel_list , Input::old('status_id'), array('class'=>'select2', 'style'=>'width:250px')) }} + - {{ (Auth::user()->id==$user->id ? ' (cannot delete yourself)' : '') }} - +
+ @if (Auth::user()->id!=$user->id) + + @else + + @endif + + id==$user->id ? ' style="text-decoration: line-through"' : '') }}>{{ $user->fullName() }} ({{ $user->username }}) -
+ {{ (Auth::user()->id==$user->id ? ' (cannot delete yourself)' : '') }} + +
+ +
+
+
+
+
+ + +
- -
-
- {{ trans('button.cancel') }} - -
-