mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
112 lines
4.4 KiB
PHP
112 lines
4.4 KiB
PHP
@extends('layouts/default')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
Bulk Checkin & Delete
|
|
@parent
|
|
@stop
|
|
|
|
{{-- Page content --}}
|
|
@section('content')
|
|
|
|
<div class="row">
|
|
<div class="col-md-8 col-md-offset-2">
|
|
<div class="box box-default">
|
|
<form class="form-horizontal" role="form" method="post" action="{{ route('users/bulksave') }}">
|
|
<div class="box-body">
|
|
<!-- CSRF Token -->
|
|
{{csrf_field()}}
|
|
<div class="col-md-12">
|
|
<div class="callout callout-danger">
|
|
<i class="fa fa-exclamation-circle"></i>
|
|
<strong>WARNING: </strong>
|
|
You are about to delete the {{ count($users) }} user(s) listed below. Super admin names are highlighted in red.
|
|
</div>
|
|
</div>
|
|
|
|
@if (config('app.lock_passwords'))
|
|
<div class="col-md-12">
|
|
<div class="callout callout-warning">
|
|
<p>{{ trans('feature_disabled') }}</p>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
<div class="col-md-12">
|
|
<div class="table-responsive">
|
|
<table class="display table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th class="col-md-1"></th>
|
|
<th class="col-md-6">Name</th>
|
|
<th class="col-md-5">Groups</th>
|
|
<th class="col-md-5">Assets</th>
|
|
<th class="col-md-5">Accessories</th>
|
|
<th class="col-md-5">Licenses</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($users as $user)
|
|
<tr {!! ($user->isSuperUser() ? ' class="danger"':'') !!}>
|
|
<td>
|
|
@if (Auth::id()!=$user->id)
|
|
<input type="checkbox" name="edit_user[]" value="{{ $user->id }}" checked="checked">
|
|
@else
|
|
<input type="checkbox" name="edit_user[]" value="{{ $user->id }}" disabled>
|
|
@endif
|
|
</td>
|
|
|
|
<td>
|
|
<span {{ (Auth::user()->id==$user->id ? ' style="text-decoration: line-through"' : '') }}>
|
|
{{ $user->present()->fullName() }} ({{ $user->username }})
|
|
</span>
|
|
{{ (Auth::id()==$user->id ? ' (cannot delete yourself)' : '') }}
|
|
</td>
|
|
<td>
|
|
@foreach ($user->groups as $group)
|
|
<a href=" {{ route('update/group', $group->id) }}" class="label label-default">
|
|
{{ $group->name }}
|
|
</a>
|
|
@endforeach
|
|
</td>
|
|
<td>
|
|
{{ number_format($user->assignedAssets()->count()) }}
|
|
</td>
|
|
<td>
|
|
{{ number_format($user->accessories()->count()) }}
|
|
</td>
|
|
<td>
|
|
{{ number_format($user->licenses()->count()) }}
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="6" class="warning">
|
|
{{ Form::select('status_id', $statuslabel_list , Input::old('status_id'), array('class'=>'select2', 'style'=>'width:250px')) }}
|
|
<label>Update all assets for these users to this status</label>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="6" class="warning">
|
|
<label><input type="checkbox" name="edit_user['.e($user->id).']" checked> Check in all properties associated with these users</label>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div> <!--/table-responsive-->
|
|
</div><!--/col-md-12-->
|
|
</div> <!--/box-body-->
|
|
<div class="box-footer text-right">
|
|
<a class="btn btn-link" href="{{ URL::previous() }}">{{ trans('button.cancel') }}</a>
|
|
<button type="submit" class="btn btn-success"><i class="fa fa-check icon-white"></i> {{ trans('button.submit') }}</button>
|
|
</div><!-- /.box-footer -->
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<form class="form-horizontal" role="form" method="post" action="{{ route('users/bulksave') }}">
|
|
</div>
|
|
|
|
@stop
|