mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-26 05:01:06 -08:00
cd8c585377
* Make delete routes work. We put a little form in the modal that spoofs the delete field. * Fix route on creating a user. * Fix redundant id parameter. * Port acceptance tests to new urls. * Initial work on migrating to model based policies instead of global gates. Will allow for much more detailed permissions bits in the future. * This needs to stay for the dashboard checks. * Add user states for permissions to build tests. * Build up unit tests for gates/permissions. Move accessories/consumables/assets to policies instead of in authserviceprovider * Migrate various locations to new syntax. Update test to be more specific * Fix functional tests. Add an artisan command for installing a settings setup on travis-ci * Try a different id... Need to come up with a better way of passing the id for tests that need an existing one. * Try to fix travis * Update urls to use routes and not hardcode old paths. Also fix some migration errors found along the way.: * Add a environment for travis functional tests. * Adjust config file to make travis use it. * Use redirect()->route instead of redirect()-to * Dump all failures in the output directory if travis fails. * Cleanups and minor fixes. * Adjust the supplier modelfactory to comply with new validation restrictions. * Some test fixes. * Locales can be longer than 5 characters according to faker... fex gez_ET. Increase lenght in mysql and add a validation * Update test database dump to latest migrations.
122 lines
5.3 KiB
PHP
122 lines
5.3 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">
|
|
<div class="box-body">
|
|
|
|
<form class="form-horizontal" role="form" method="post" action="{{ route('users/bulksave') }}">
|
|
<!-- CSRF Token -->
|
|
<input type="hidden" name="_token" value="{{ csrf_token() }}" />
|
|
|
|
|
|
<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>
|
|
<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>
|
|
<tbody>
|
|
@foreach ($users as $user)
|
|
<tr {!! ($user->isSuperUser() ? ' class="danger"':'') !!}>
|
|
<td>
|
|
@if (Auth::user()->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->fullName() }} ({{ $user->username }})</span>
|
|
|
|
{{ (Auth::user()->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->assets->count()) }}
|
|
</td>
|
|
<td>
|
|
{{ number_format($user->accessories->count()) }}
|
|
</td>
|
|
<td>
|
|
{{ number_format($user->licenses->count()) }}
|
|
</td>
|
|
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<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 -->
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</form>
|
|
|
|
@stop
|