From 820ae09a6f9c50aa94f09fea588dfe7f45f2e2ad Mon Sep 17 00:00:00 2001 From: snipe Date: Fri, 17 Mar 2023 16:42:41 -0700 Subject: [PATCH] Reworked the layout of the confirm merge form a little Signed-off-by: snipe --- resources/views/users/confirm-merge.blade.php | 36 ++++++++++++------- 1 file changed, 24 insertions(+), 12 deletions(-) diff --git a/resources/views/users/confirm-merge.blade.php b/resources/views/users/confirm-merge.blade.php index f423d74dd8..c8d87916a4 100644 --- a/resources/views/users/confirm-merge.blade.php +++ b/resources/views/users/confirm-merge.blade.php @@ -7,19 +7,25 @@ {{-- Page content --}} @section('content') - +
+ +
+

+ {{ trans('general.merge_information', array('count' => count($users))) }} +

+
{{csrf_field()}}
- {{ trans('general.warning_merge_information', array('count' => count($users))) }} + {{ trans('general.warning_merge_information') }}
@@ -39,7 +45,6 @@ - @@ -66,14 +71,8 @@ @foreach ($users as $user) isSuperUser() ? ' class="danger"':'') !!}> - -
{{ trans('general.name') }} {{ trans('general.email') }} {{ trans('general.username') }}
- - - id==$user->id ? ' style="text-decoration: line-through"' : '') !!}> - {{ $user->present()->fullName() }} - - {{ (Auth::id()==$user->id ? ' (cannot delete yourself)' : '') }} + + {{ $user->email }} @@ -112,7 +111,7 @@ @foreach ($users as $user) @@ -128,4 +127,17 @@ @section('moar_scripts') + @if (!(config('app.lock_passwords'))) + + + @endif + @stop \ No newline at end of file