Skip to content

Commit 6908456

Browse files
committed
Merge remote-tracking branch 'origin/develop'
2 parents 823e0c8 + c26369f commit 6908456

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

app/views/backend/hardware/view.blade.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,9 +214,15 @@
214214
<td>{{ $log->action_type }}</td>
215215
<td>
216216
@if ((isset($log->checkedout_to)) && ($log->checkedout_to!=0) && ($log->checkedout_to!=''))
217+
218+
@if ($log->userlog->deleted_at=='')
217219
<a href="{{ route('view/user', $log->checkedout_to) }}">
218220
{{{ $log->userlog->fullName() }}}
219-
</a>
221+
</a>
222+
@else
223+
<del>{{{ $log->userlog->fullName() }}}</del>
224+
@endif
225+
220226
@endif
221227
</td>
222228
<td>

app/views/backend/users/index.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
<div class="col-md-12">
1414
<a href="{{ route('create/user') }}" class="btn btn-success pull-right"><i class="icon-plus-sign icon-white"></i> @lang('general.create')</a>
1515
@if (Input::get('onlyTrashed'))
16-
<a class="btn btn-default pull-right" href="{{ URL::to('admin/users') }}">Show Current Users</a>
16+
<a class="btn btn-default pull-right" href="{{ URL::to('admin/users') }}" style="margin-right: 5px;">Show Current Users</a>
1717
@else
18-
<a class="btn btn-default pull-right" href="{{ URL::to('admin/users?onlyTrashed=true') }}">Show Deleted Users</a>
18+
<a class="btn btn-default pull-right" href="{{ URL::to('admin/users?onlyTrashed=true') }}" style="margin-right: 5px;">Show Deleted Users</a>
1919
@endif
2020

2121
<h3>

0 commit comments

Comments
 (0)