Misc fixes
This commit is contained in:
parent
864513c44b
commit
aaf96669d4
15 changed files with 58 additions and 57 deletions
|
@ -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 }} <{{ $nest->author }}></option>
|
||||
@endforeach
|
||||
|
@ -101,7 +101,7 @@
|
|||
@parent
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
$('#pImportToService').select2();
|
||||
$('#pImportToNest').select2();
|
||||
});
|
||||
</script>
|
||||
@endsection
|
||||
|
|
|
@ -83,7 +83,7 @@
|
|||
</tr>
|
||||
@foreach($nest->eggs as $egg)
|
||||
<tr>
|
||||
<td class="align-middle"><a href="{{ route('admin.nests.egg.view', $egg->id) }}">{{ $egg->name }}</a></td>
|
||||
<td class="align-middle"><a href="{{ route('admin.nests.egg.view', $egg->id) }}" data-toggle="tooltip" data-placement="right" title="{{ $egg->author }}">{{ $egg->name }}</a></td>
|
||||
<td class="col-xs-8 align-middle">{!! $egg->description !!}</td>
|
||||
<td class="text-center align-middle"><code>{{ $egg->servers->count() }}</code></td>
|
||||
<td class="align-middle">
|
||||
|
@ -105,7 +105,7 @@
|
|||
@parent
|
||||
<script>
|
||||
$('#deleteButton').on('mouseenter', function (event) {
|
||||
$(this).find('i').html(' Delete Service');
|
||||
$(this).find('i').html(' Delete Nest');
|
||||
}).on('mouseleave', function (event) {
|
||||
$(this).find('i').html('');
|
||||
});
|
||||
|
|
Reference in a new issue