mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
Added email and username to merge user confirmation screen
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
f566a71658
commit
736777e1e6
|
@ -39,6 +39,8 @@
|
|||
<tr>
|
||||
<th class="col-md-1"></th>
|
||||
<th class="col-md-6">{{ trans('general.name') }}</th>
|
||||
<th class="col-md-6">{{ trans('general.email') }}</th>
|
||||
<th class="col-md-6">{{ trans('general.username') }}</th>
|
||||
<th class="col-md-5">{{ trans('general.groups') }}</th>
|
||||
<th class="col-md-5">{{ trans('general.assets') }}</th>
|
||||
<th class="col-md-5">{{ trans('general.accessories') }}</th>
|
||||
|
@ -55,10 +57,18 @@
|
|||
|
||||
<td>
|
||||
<span {!! (Auth::user()->id==$user->id ? ' style="text-decoration: line-through"' : '') !!}>
|
||||
{{ $user->present()->fullName() }} ({{ $user->username }}) (#{{ $user->id }})
|
||||
{{ $user->present()->fullName() }}
|
||||
</span>
|
||||
{{ (Auth::id()==$user->id ? ' (cannot delete yourself)' : '') }}
|
||||
</td>
|
||||
<td>
|
||||
{{ $user->email }}
|
||||
|
||||
</td>
|
||||
<td>
|
||||
{{ $user->username }}
|
||||
</td>
|
||||
|
||||
<td>
|
||||
@foreach ($user->groups as $group)
|
||||
<a href=" {{ route('groups.update', $group->id) }}" class="label label-default">
|
||||
|
|
Loading…
Reference in a new issue