pilot unable to place bids on flight if pilots.only_flights_from_current = true and departure airport is not the same pilot's current airport.

This commit is contained in:
lordwilbur
2018-05-19 00:55:08 +02:00
parent 993513c22b
commit 0d53c5487d

View File

@@ -17,29 +17,31 @@
"x-saved-class" is the class to add/remove if the bid exists or not "x-saved-class" is the class to add/remove if the bid exists or not
If you change it, remember to change it in the in-array line as well If you change it, remember to change it in the in-array line as well
--}} --}}
@if (!setting('pilots.only_flights_from_current') || $flight->dpt_airport->icao == Auth::user()->current_airport->icao)
<button class="btn btn-round btn-icon btn-icon-mini <button class="btn btn-round btn-icon btn-icon-mini
{{ in_array($flight->id, $saved, true) ? 'btn-info':'' }} {{ in_array($flight->id, $saved, true) ? 'btn-info':'' }}
save_flight" save_flight"
x-id="{{ $flight->id }}" x-id="{{ $flight->id }}"
x-saved-class="btn-info" x-saved-class="btn-info"
type="button" type="button"
title="Add/Remove Bid" title="@lang('frontend.flights.addremovebid')"
> >
<i class="fas fa-map-marker"></i> <i class="fas fa-map-marker"></i>
</button> </button>
@endif
</div> </div>
</div> </div>
<div class="row"> <div class="row">
<div class="col-sm-5"> <div class="col-sm-5">
{{--<table class="table-condensed"></table>--}} {{--<table class="table-condensed"></table>--}}
<span class="title">DEP&nbsp;</span> <span class="title">{{ strtoupper(trans('frontend.flights.dep')) }}&nbsp;</span>
{{ $flight->dpt_airport->name }} {{ $flight->dpt_airport->name }}
(<a href="{{route('frontend.airports.show', [ (<a href="{{route('frontend.airports.show', [
'id' => $flight->dpt_airport->icao 'id' => $flight->dpt_airport->icao
])}}">{{$flight->dpt_airport->icao}}</a>) ])}}">{{$flight->dpt_airport->icao}}</a>)
@if($flight->dpt_time), {{ $flight->dpt_time }}@endif @if($flight->dpt_time), {{ $flight->dpt_time }}@endif
<br /> <br />
<span class="title">ARR&nbsp;</span> <span class="title">{{ strtoupper(trans('frontend.flights.arr')) }}&nbsp;</span>
{{ $flight->arr_airport->name }} {{ $flight->arr_airport->name }}
(<a href="{{route('frontend.airports.show', [ (<a href="{{route('frontend.airports.show', [
'id' => $flight->arr_airport->icao 'id' => $flight->arr_airport->icao
@@ -47,19 +49,19 @@
@if($flight->arr_time), {{ $flight->arr_time }}@endif @if($flight->arr_time), {{ $flight->arr_time }}@endif
<br /> <br />
@if($flight->distance) @if($flight->distance)
<span class="title">DISTANCE&nbsp;</span> <span class="title">{{ strtoupper(trans('frontend.global.distance')) }}&nbsp;</span>
{{ $flight->distance }} {{ setting('units.distance') }} {{ $flight->distance }} {{ setting('units.distance') }}
@endif @endif
<br /> <br />
@if($flight->level) @if($flight->level)
<span class="title">LEVEL&nbsp;</span> <span class="title">{{ strtoupper(trans('frontend.flights.level')) }}&nbsp;</span>
{{ $flight->level }} {{ setting('units.altitude') }} {{ $flight->level }} {{ setting('units.altitude') }}
@endif @endif
</div> </div>
<div class="col-sm-7"> <div class="col-sm-7">
<div class="row"> <div class="row">
<div class="col-sm-12"> <div class="col-sm-12">
<span class="title">ROUTE&nbsp;</span> <span class="title">{{ strtoupper(trans('frontend.global.route')) }}&nbsp;</span>
{{ $flight->route }} {{ $flight->route }}
</div> </div>
</div> </div>