fixes for issue #419 (#429)

* fixes for issue #419

* no spaces

* no spaces
This commit is contained in:
voipmeister
2019-11-01 13:33:43 +01:00
committed by Nabeel S
parent 70d43e6e53
commit db087d0ccb

View File

@@ -42,13 +42,13 @@
@lang('flights.none') @lang('flights.none')
</div> </div>
@else @else
<table class="table table-striped table-condensed"> <table class="table table-striped">
<thead> <thead>
<tr> <tr>
<th class="text-left">@lang('airports.ident')</th> <th class="text-left">@lang('airports.ident')</th>
<th class="text-left">@lang('common.from')</th> <th class="text-left">@lang('airports.departure')</th>
<th>@lang('common.departure')</th> <th>@lang('flights.dep')</th>
<th>@lang('common.arrival')</th> <th>@lang('flights.arr')</th>
</tr> </tr>
</thead> </thead>
@foreach($inbound_flights as $flight) @foreach($inbound_flights as $flight)
@@ -77,13 +77,13 @@
@lang('flights.none') @lang('flights.none')
</div> </div>
@else @else
<table class="table table-striped table-condensed"> <table class="table table-striped">
<thead> <thead>
<tr> <tr>
<th class="text-left">@lang('airports.ident')</th> <th class="text-left">@lang('airports.ident')</th>
<th class="text-left">@lang('common.to')</th> <th class="text-left">@lang('airports.arrival')</th>
<th>@lang('common.departure')</th> <th>@lang('flights.dep')</th>
<th>@lang('common.arrival')</th> <th>@lang('flights.arr')</th>
</tr> </tr>
</thead> </thead>
@foreach($outbound_flights as $flight) @foreach($outbound_flights as $flight)