Files
snipe-it/app/views/backend/users/confirm-bulk-delete.blade.php
T
2015-07-24 22:37:15 -07:00

102 lines
3.8 KiB
PHP

@extends('backend/layouts/default')
{{-- Page title --}}
@section('title')
Bulk Edit/Delete ::
@parent
@stop
{{-- Page content --}}
@section('content')
<div class="page-header">
<h3>
Bulk Process Users
<div class="pull-right">
<a href="{{ route('users') }}" class="btn-flat gray pull-right"><i class="fa fa-arrow-circle-left icon-white"></i> @lang('general.back')</a>
</div>
</h3>
</div>
<form class="form-horizontal" role="form" method="post" action="{{ route('users/bulksave') }}">
<!-- CSRF Token -->
<input type="hidden" name="_token" value="{{ csrf_token() }}" />
<!-- Tabs Content -->
<div class="col-md-12 col-sm-12">
<!-- General tab -->
<div class="col-md-12">
<div class="alert alert-danger">
<i class="fa fa-exclamation-circle"></i>
<strong>WARNING: </strong>
You are about to delete the {{{ count($users) }}} user(s) listed below. Admin names are highlighted in red.
</div>
</div>
@if (Config::get('app.lock_passwords'))
<p>Note: This feature is disabled on the demo.</p>
@endif
<div class="table-responsive">
<table class="display table table-hover">
<thead>
<tr>
<th class="col-md-1"></th>
<th class="col-md-4">Name</th>
<th class="col-md-7">Groups</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="2">
Update all assets for these users to this status:
</td>
<td>
{{ Form::select('status_id', $statuslabel_list , Input::old('status_id'), array('class'=>'select2', 'style'=>'width:350px')) }}
</td>
</tr>
</tfoot>
<tbody>
@foreach ($users as $user)
<tr>
<td>
@if (Sentry::getId()!=$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{{ ($user->hasAccess('admin') ? ' style="color: #b94a48; font-weight: bold"' : '') }}>
<span{{ (Sentry::getId()==$user->id ? ' style="text-decoration: line-through"' : '') }}>{{{ $user->fullName() }}}</span>
{{ (Sentry::getId()==$user->id ? ' (cannot delete yourself)' : '') }}
</td>
<td>
@foreach ($user->groups as $group)
<span class="label label-default">{{{ $group->name}}}</span>
@endforeach
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
<!-- Form Actions -->
<div class="form-group">
<div class="col-sm-offset-2 col-sm-4">
<a class="btn btn-link" href="{{ route('users') }}">@lang('button.cancel')</a>
<button type="submit" class="btn btn-default">@lang('button.submit')</button>
</div>
</div>
</form>
@stop