mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-13 06:47:46 -08:00
Ugh - messing with the blade layout
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
32d8d8c50e
commit
5bda73f151
|
@ -38,7 +38,7 @@
|
||||||
<div class="box-body">
|
<div class="box-body">
|
||||||
|
|
||||||
|
|
||||||
<div class="col-md-11 col-md-offset-1">
|
<div class="col-md-12">
|
||||||
|
|
||||||
<!-- Language -->
|
<!-- Language -->
|
||||||
<div class="form-group {{ $errors->has('site_name') ? 'error' : '' }}">
|
<div class="form-group {{ $errors->has('site_name') ? 'error' : '' }}">
|
||||||
|
@ -52,17 +52,22 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<!-- Date format -->
|
<!-- Date format -->
|
||||||
<div class="form-group {{ $errors->has('time_display_format') ? 'error' : '' }}">
|
<div class="form-group {{ $errors->has('time_display_format') ? 'error' : '' }}">
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
{{ Form::label('time_display_format', trans('general.time_and_date_display')) }}
|
{{ Form::label('time_display_format', trans('general.time_and_date_display')) }}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-9">
|
<div class="col-md-10">
|
||||||
{!! Form::date_display_format('date_display_format', Request::old('date_display_format', $setting->date_display_format), 'select2') !!}
|
{!! Form::date_display_format('date_display_format', Request::old('date_display_format', $setting->date_display_format), 'select2') !!}
|
||||||
|
</div>
|
||||||
|
<div class="col-md-3">
|
||||||
{!! Form::time_display_format('time_display_format', Request::old('time_display_format', $setting->time_display_format), 'select2') !!}
|
{!! Form::time_display_format('time_display_format', Request::old('time_display_format', $setting->time_display_format), 'select2') !!}
|
||||||
|
|
||||||
|
</div>
|
||||||
{!! $errors->first('time_display_format', '<span class="alert-msg" aria-hidden="true">:message</span>') !!}
|
{!! $errors->first('time_display_format', '<span class="alert-msg" aria-hidden="true">:message</span>') !!}
|
||||||
|
<div class="col-md-11 col-offset-3">
|
||||||
|
<p class="help-block">The date shown in the drop-down is just an example to display the different date formats. It is not meant to reflect today's date.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue