Misc fixes

This commit is contained in:
Dane Everitt 2017-10-08 21:36:22 -05:00
parent 864513c44b
commit aaf96669d4
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
15 changed files with 58 additions and 57 deletions

View file

@ -75,9 +75,9 @@
</div>
</div>
<div class="form-group">
<label class="control-label" for="pImportToService">Associated Nest <span class="field-required"></span></label>
<label class="control-label" for="pImportToNest">Associated Nest <span class="field-required"></span></label>
<div>
<select id="pImportToService" name="import_to_service">
<select id="pImportToNest" name="import_to_nest">
@foreach($nests as $nest)
<option value="{{ $nest->id }}">{{ $nest->name }} &lt;{{ $nest->author }}&gt;</option>
@endforeach
@ -101,7 +101,7 @@
@parent
<script>
$(document).ready(function() {
$('#pImportToService').select2();
$('#pImportToNest').select2();
});
</script>
@endsection