Files
SourceDoctor db38c27986 Widget hide-show search Field (#11729)
* Widget hide-show search Field

* remove uneeded row - cleanup
2020-06-11 13:59:08 +02:00

89 lines
4.6 KiB
PHP

@extends('widgets.settings.base')
@section('form')
<div class="form-group">
<label for="title-{{ $id }}" class="control-label">@lang('Widget title')</label>
<input type="text" class="form-control" name="title" id="title-{{ $id }}" placeholder="@lang('Custom title')" value="{{ $title }}">
</div>
<div class="form-group">
<label for="acknowledged-{{ $id }}" class="control-label">@lang('Show acknowledged'):</label>
<select class="form-control" name="acknowledged" id="acknowledged-{{ $id }}">
<option value="">@lang('not filtered')</option>
<option value="1" @if($acknowledged === '1') selected @endif>@lang('show only acknowledged')</option>
<option value="0" @if($acknowledged === '0') selected @endif>@lang('hide acknowledged')</option>
</select>
</div>
<div class="form-group">
<label for="fired-{{ $id }}" class="control-label">@lang('Show only fired'):</label>
<select class="form-control" name="fired" id="fired-{{ $id }}">
<option value="">@lang('not filtered')</option>
<option value="1" @if($fired === '1') selected @endif>@lang('show only fired alerts')</option>
</select>
</div>
<div class="form-group">
<label for="min_severity-{{ $id }}" class="control-label">@lang('Displayed severity'):</label>
<select class="form-control" name="min_severity" id="min_severity-{{ $id }}">
<option value="">@lang('any severity')</option>
@foreach($severities as $name => $val)
<option value="{{ $val }}" @if($min_severity == $val) selected @endif>{{ $name }}{{$val > 3 ? '' : ' ' . __('or higher')}}</option>
@endforeach
</select>
</div>
<div class="form-group">
<label for="state-{{ $id }}" class="control-label">@lang('State'):</label>
<select class="form-control" name="state" id="state-{{ $id }}">
<option value="">@lang('any state')</option>
@foreach($states as $name => $val)
<option value="{{ $val }}" @if($state === $val) selected @endif>{{ $name }}</option>
@endforeach
</select>
</div>
<div class="form-group">
<label for="device_group-{{ $id }}" class="control-label">@lang('Device group')</label>
<select class="form-control" name="device_group" id="device_group-{{ $id }}" data-placeholder="@lang('All Devices')">
@if($device_group)
<option value="{{ $device_group->id }}" selected>{{ $device_group->name }}</option>
@endif
</select>
</div>
<div class="form-group">
<label for="proc-{{ $id }}" class="control-label">@lang('Show Procedure field'):</label>
<select class="form-control" name="proc" id="proc-{{ $id }}">
<option value="1" @if($proc == 1) selected @endif>@lang('show')</option>
<option value="0" @if($proc == 0) selected @endif>@lang('hide')</option>
</select>
</div>
<div class="form-group">
<label for="location-{{ $id }}" class="control-label">@lang('Show Location field'):</label>
<select class="form-control" name="location" id="location-{{ $id }}">
<option value="1" @if($location == 1) selected @endif>@lang('show')</option>
<option value="0" @if($location == 0) selected @endif>@lang('hide')</option>
</select>
</div>
<div class="form-group">
<label for="sort-{{ $id }}" class="control-label">@lang('Sort alerts by'):</label>
<select class="form-control" name="sort" id="sort-{{ $id }}">
<option value="" @if($sort == 1) selected @endif>@lang('timestamp, descending')</option>
<option value="severity" @if($sort == 0) selected @endif>@lang('severity, descending')</option>
</select>
</div>
<div class="form-group">
<label for="hidenavigation-{{ $id }}" class="control-label">@lang('Hide Navigation'):</label>
<input type="checkbox" class="form-control" name="hidenavigation" id="hidenavigation-{{ $id }}" value="{{ $hidenavigation }}" data-size="normal" @if($hidenavigation) checked @endif>
</div>
@endsection
@section('javascript')
<script type="text/javascript">
init_select2('#device_group-{{ $id }}', 'device-group', {});
$('#hidenavigation-{{ $id }}')
.bootstrapSwitch('offColor','danger')
.on('switchChange.bootstrapSwitch', function (e, data) {
var hidenav = $(this).is(':checked') ? "1": "0";
$('#hidenavigation-{{ $id }}').val(hidenav);
});
</script>
@endsection