mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
bffba02511
Signed-off-by: snipe <snipe@snipe.net>
162 lines
6.6 KiB
PHP
162 lines
6.6 KiB
PHP
@extends('layouts/default')
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
{!! trans('general.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="fas fa-exclamation-triangle"></i>
|
|
<strong>{{ trans('admin/users/general.warning_deletion_information', array('count' => count($users))) }} </strong>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
@if (config('app.lock_passwords'))
|
|
<div class="col-md-12">
|
|
<div class="callout callout-warning">
|
|
<p>{{ trans('general.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">
|
|
<!-- <input type="checkbox" id="checkAll"> -->
|
|
</th>
|
|
<th class="col-md-3">{{ trans('general.name') }}</th>
|
|
<th class="col-md-3">{{ trans('general.groups') }}</th>
|
|
<th class="text-right">
|
|
<i class="fas fa-barcode fa-fw" aria-hidden="true" style="font-size: 17px;"></i>
|
|
<span class="sr-only">{{ trans('general.assets') }}</span>
|
|
</th>
|
|
<th class="text-right">
|
|
<i class="far fa-keyboard fa-fw" aria-hidden="true" style="font-size: 17px;"></i>
|
|
<span class="sr-only">{{ trans('general.accessories') }}</span>
|
|
</th>
|
|
<th class="text-right">
|
|
<i class="far fa-save fa-fw" aria-hidden="true" style="font-size: 17px;"></i>
|
|
<span class="sr-only">{{ trans('general.licenses') }}</span>
|
|
</th>
|
|
<th class="text-right">
|
|
<i class="fas fa-tint fa-fw" aria-hidden="true" style="font-size: 17px;"></i>
|
|
<span class="sr-only">{{ trans('general.consumables') }}</span>
|
|
</th>
|
|
<th class="text-right">
|
|
<i class="fas fa-paperclip fa-fw" aria-hidden="true" style="font-size: 17px;"></i>
|
|
<span class="sr-only">{{ trans('general.files') }}</span>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($users as $user)
|
|
<tr {!! ($user->isSuperUser() ? ' class="danger"':'') !!}>
|
|
<td>
|
|
@if (Auth::id()!=$user->id)
|
|
<input type="checkbox" name="ids[]" value="{{ $user->id }}" checked="checked">
|
|
@else
|
|
<input type="checkbox" name="ids[]" class="cannot_delete" 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('groups.update', $group->id) }}" class="label label-default">
|
|
{{ $group->name }}
|
|
</a>
|
|
@endforeach
|
|
</td>
|
|
<td class="text-right">
|
|
{{ number_format($user->assets->count()) }}
|
|
</td>
|
|
<td class="text-right">
|
|
{{ number_format($user->accessories->count()) }}
|
|
</td>
|
|
<td class="text-right">
|
|
{{ number_format($user->licenses->count()) }}
|
|
</td>
|
|
<td class="text-right">
|
|
{{ number_format($user->consumables->count()) }}
|
|
</td>
|
|
<td class="text-right">
|
|
{{ number_format($user->uploads->count()) }}
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
<tfoot>
|
|
|
|
<tr>
|
|
<td colspan="8">
|
|
{{ Form::select('status_id', $statuslabel_list , old('status_id'), array('class'=>'select2', 'style'=>'width:250px')) }}
|
|
<label>{{ trans('admin/users/general.update_user_assets_status') }}</label>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="8" class="col-md-12 alert-danger">
|
|
<label class="form-control">
|
|
<input type="checkbox" name="delete_user" value="1">
|
|
<span><i class="fa fa-warning fa-2x"></i> {{ trans('general.bulk_soft_delete') }}</span>
|
|
</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 pull-left" href="{{ URL::previous() }}">{{ trans('button.cancel') }}</a>
|
|
|
|
<button type="submit" class="btn btn-success"{{ (config('app.lock_passwords') ? ' disabled' : '') }} disabled="disabled"><x-icon type="checkmark" /> {{ trans('button.submit') }}</button>
|
|
|
|
</div><!-- /.box-footer -->
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@stop
|
|
|
|
@section('moar_scripts')
|
|
<script>
|
|
|
|
|
|
// TODO: include a class that excludes certain checkboxes by class to not be select-all'd
|
|
// $("#checkAll").change(function () {
|
|
// $("input:checkbox").prop('checked', $(this).prop("checked"));
|
|
// });
|
|
|
|
|
|
$(":submit").attr("disabled", "disabled");
|
|
$("[name='status_id']").on('select2:select', function (e) {
|
|
if (e.params.data.id != "") {
|
|
console.log(e.params.data.id);
|
|
$(":submit").removeAttr("disabled");
|
|
} else {
|
|
$(":submit").attr("disabled", "disabled");
|
|
}
|
|
});
|
|
</script>
|
|
@stop |