mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-11 13:57:41 -08:00
Fixed HTML tags
This commit is contained in:
parent
f6446bae79
commit
72b3228d82
|
@ -49,11 +49,7 @@
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
@if (isset($helpText))
|
@if (isset($helpText))
|
||||||
<div class="box-tools pull-right">
|
|
||||||
<button class="slideout-menu-toggle btn btn-box-tool btn-box-tool-lg" data-toggle="tooltip" title="Help"><i class="fa fa-question" aria-hidden="true"></i>
|
|
||||||
<span class="sr-only">Help</span>
|
|
||||||
@include('partials.forms.edit.submit-button')
|
@include('partials.forms.edit.submit-button')
|
||||||
</div>
|
|
||||||
@endif
|
@endif
|
||||||
</div><!-- /.box-header -->
|
</div><!-- /.box-header -->
|
||||||
|
|
||||||
|
|
|
@ -3,17 +3,17 @@
|
||||||
<!-- full company support is enabled and this user isn't a superadmin -->
|
<!-- full company support is enabled and this user isn't a superadmin -->
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
{{ Form::label($fieldname, $translated_name, array('class' => 'col-md-3 control-label')) }}
|
{{ Form::label($fieldname, $translated_name, array('class' => 'col-md-3 control-label')) }}
|
||||||
<div class="col-md-7">
|
<div class="col-md-7">
|
||||||
<select class="js-data-ajax" data-endpoint="companies" data-placeholder="{{ trans('general.select_company') }}" name="{{ $fieldname }}" style="width: 100%" id="company_select" aria-label="{{ $fieldname }}">
|
<select class="js-data-ajax" data-endpoint="companies" data-placeholder="{{ trans('general.select_company') }}" name="{{ $fieldname }}" style="width: 100%" id="company_select" aria-label="{{ $fieldname }}">
|
||||||
@if ($company_id = old($fieldname, (isset($item)) ? $item->{$fieldname} : ''))
|
@if ($company_id = old($fieldname, (isset($item)) ? $item->{$fieldname} : ''))
|
||||||
<option value="{{ $company_id }}" selected="selected" role="option" aria-selected="true" role="option">
|
<option value="{{ $company_id }}" selected="selected" role="option" aria-selected="true" role="option">
|
||||||
{{ (\App\Models\Company::find($company_id)) ? \App\Models\Company::find($company_id)->name : '' }}
|
{{ (\App\Models\Company::find($company_id)) ? \App\Models\Company::find($company_id)->name : '' }}
|
||||||
</option>
|
</option>
|
||||||
@else
|
@else
|
||||||
<option value="" role="option">{{ trans('general.select_company') }}</option>
|
<option value="" role="option">{{ trans('general.select_company') }}</option>
|
||||||
@endif
|
@endif
|
||||||
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@else
|
@else
|
||||||
|
@ -34,5 +34,6 @@
|
||||||
{!! $errors->first($fieldname, '<div class="col-md-8 col-md-offset-3"><span class="alert-msg"><i class="fa fa-times"></i> :message</span></div>') !!}
|
{!! $errors->first($fieldname, '<div class="col-md-8 col-md-offset-3"><span class="alert-msg"><i class="fa fa-times"></i> :message</span></div>') !!}
|
||||||
|
|
||||||
{!! $errors->first($fieldname, '<div class="col-md-8 col-md-offset-3"><span class="alert-msg" aria-hidden="true"><i class="fa fa-times" aria-hidden="true"></i> :message</span></div>') !!}
|
{!! $errors->first($fieldname, '<div class="col-md-8 col-md-offset-3"><span class="alert-msg" aria-hidden="true"><i class="fa fa-times" aria-hidden="true"></i> :message</span></div>') !!}
|
||||||
|
</div>
|
||||||
|
|
||||||
@endif
|
@endif
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
<a href="#" class="text-dark-gray" tabindex="0" role="button" data-toggle="popover" data-trigger="focus" title="<i class='fa fa-life-ring'></i> {{ trans('help.more_info_title') }}" data-placement="{{ (isset($helpPosition)) ? $helpPosition : 'right' }}" data-html="true" data-content="{{ (isset($helpText)) ? $helpText : 'Info Missing' }}"><i class="fa fa-life-ring"></i></a>
|
<a href="#" class="text-dark-gray" tabindex="0" role="button" data-toggle="popover" data-trigger="focus" data-placement="{{ (isset($helpPosition)) ? $helpPosition : 'right' }}" data-html="true" data-content="{{ (isset($helpText)) ? $helpText : 'Info Missing' }}"><i class="fa fa-life-ring"></i></a>
|
||||||
|
|
Loading…
Reference in a new issue