mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
2c7bbfa637
Signed-off-by: snipe <snipe@snipe.net>
36 lines
1.5 KiB
PHP
36 lines
1.5 KiB
PHP
<div id="{{ (isset($id_divname)) ? $id_divname : 'assetsBulkEditToolbar' }}" style="min-width:400px">
|
|
{{ Form::open([
|
|
'method' => 'POST',
|
|
'route' => ['hardware/bulkedit'],
|
|
'class' => 'form-inline',
|
|
'id' => (isset($id_formname)) ? $id_formname : 'assetsBulkForm',
|
|
]) }}
|
|
|
|
{{-- The sort and order will only be used if the cookie is actually empty (like on first-use) --}}
|
|
<input name="sort" type="hidden" value="assets.id">
|
|
<input name="order" type="hidden" value="asc">
|
|
<label for="bulk_actions">
|
|
<span class="sr-only">
|
|
{{ trans('button.bulk_actions') }}
|
|
</span>
|
|
</label>
|
|
<select name="bulk_actions" class="form-control select2" aria-label="bulk_actions" style="min-width: 350px;">
|
|
@if((isset($status)) && ($status == 'Deleted'))
|
|
@can('delete', \App\Models\Asset::class)
|
|
<option value="restore">{{trans('button.restore')}}</option>
|
|
@endcan
|
|
@else
|
|
@can('update', \App\Models\Asset::class)
|
|
<option value="edit">{{ trans('button.edit') }}</option>
|
|
@endcan
|
|
@can('delete', \App\Models\Asset::class)
|
|
<option value="delete">{{ trans('button.delete') }}</option>
|
|
@endcan
|
|
<option value="labels" accesskey="l">{{ trans_choice('button.generate_labels', 2) }}</option>
|
|
@endif
|
|
</select>
|
|
|
|
<button class="btn btn-primary" id="{{ (isset($id_button)) ? $id_button : 'bulkAssetEditButton' }}" disabled>{{ trans('button.go') }}</button>
|
|
{{ Form::close() }}
|
|
</div>
|