added settings page in admin #93

This commit is contained in:
Nabeel Shahzad
2017-12-30 10:38:18 -06:00
parent fcec39fe0f
commit 4a1d7c59fb
15 changed files with 241 additions and 84 deletions

View File

@@ -0,0 +1,30 @@
@section('scripts')
<script>
$(document).ready(function() {
$('#settings a').editable({
type: 'text',
mode: 'inline',
emptytext: 'default',
url: '/admin/settings/update',
title: 'Enter override value',
ajaxOptions: { 'type': 'put'},
params: function(params) {
return {
fare_id: params.pk,
name: params.name,
value: params.value
}
}
});
$(document).on('submit', 'form.rm_fare', function(event) {
event.preventDefault();
$.pjax.submit(event, '#aircraft_fares_wrapper', {push: false});
});
$(document).on('pjax:complete', function() {
$(".select2").select2();
});
});
</script>
@endsection