consistency on admin tables
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
<table class="table table-responsive" id="aircrafts-table">
|
||||
<table class="table table-hover table-responsive" id="aircrafts-table">
|
||||
<thead>
|
||||
<th>Subfleet</th>
|
||||
<th>Name</th>
|
||||
<th>Registration</th>
|
||||
<th style="text-align: center;">Active</th>
|
||||
<th style="text-align: right;">Actions</th>
|
||||
<th style="text-align: right;"></th>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($aircraft as $ac)
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
<table class="table table-responsive" id="airlines-table">
|
||||
<table class="table table-hover table-responsive" id="airlines-table">
|
||||
<thead>
|
||||
<th>Code</th>
|
||||
<th>IATA</th>
|
||||
<th>Name</th>
|
||||
<th class="text-center">Active</th>
|
||||
<th class="text-right">Action</th>
|
||||
<th></th>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($airlines as $al)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<div id="airports_table_wrapper">
|
||||
<table class="table table-responsive" id="airports-table">
|
||||
<table class="table table-hover table-responsive" id="airports-table">
|
||||
<thead>
|
||||
<th>ICAO</th>
|
||||
<th>Name</th>
|
||||
@@ -7,7 +7,7 @@
|
||||
<th style="text-align: center;">100LL</th>
|
||||
<th style="text-align: center;">JetA</th>
|
||||
<th style="text-align: center;">MOGAS</th>
|
||||
<th colspan="3" style="text-align: right">Action</th>
|
||||
<th></th>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($airports as $airport)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<table class="table table-responsive" id="fares-table">
|
||||
<table class="table table-hover table-responsive" id="fares-table">
|
||||
<thead>
|
||||
<th>Code</th>
|
||||
<th>Name</th>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<div class="content table-responsive table-full-width">
|
||||
<table class="table table-hover table-striped" id="flights-table">
|
||||
<table class="table table-hover" id="flights-table">
|
||||
<thead>
|
||||
<th>Flight #</th>
|
||||
<th>Dep</th>
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<table class="table table-responsive" id="pirepFields-table">
|
||||
<table class="table table-hover table-responsive" id="pirepFields-table">
|
||||
<thead>
|
||||
<th>Name</th>
|
||||
<th>Required</th>
|
||||
<th colspan="3">Action</th>
|
||||
<th></th>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($fields as $field)
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<table class="table table-responsive" id="pireps-table">
|
||||
<table class="table table-hover table-responsive" id="pireps-table">
|
||||
<thead>
|
||||
<th>Pilot</th>
|
||||
<th>Flight</th>
|
||||
<th>Aircraft</th>
|
||||
<th>Flight Time</th>
|
||||
<th>Level</th>
|
||||
<th colspan="3" style="text-align: right">Action</th>
|
||||
<th></th>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($pireps as $pirep)
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<div id="ranks_table_wrapper">
|
||||
<table class="table table-responsive">
|
||||
<table class="table table-hover table-responsive">
|
||||
<thead>
|
||||
<th>Name</th>
|
||||
<th>Hours</th>
|
||||
<th class="text-center">Auto Approve Acars</th>
|
||||
<th class="text-center">Auto Approve Manual</th>
|
||||
<th class="text-center">Auto Promote</th>
|
||||
<th class="text-right">Action</th>
|
||||
<th></th>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($ranks as $rank)
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
<table class="table table-responsive" id="subfleets-table">
|
||||
<table class="table table-hover table-responsive" id="subfleets-table">
|
||||
<thead>
|
||||
<th>Airline</th>
|
||||
<th>Name</th>
|
||||
<th>Type</th>
|
||||
<th>Fuel Type</th>
|
||||
<th colspan="3">Action</th>
|
||||
<th></th>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($subfleets as $subfleet)
|
||||
@@ -23,7 +23,7 @@
|
||||
-
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
<td class="text-right">
|
||||
{!! Form::open(['route' => ['admin.subfleets.destroy', $subfleet->id], 'method' => 'delete']) !!}
|
||||
<div class='btn-group'>
|
||||
<a href="{!! route('admin.subfleets.show', [$subfleet->id]) !!}" class='btn btn-default btn-xs'><i class="glyphicon glyphicon-eye-open"></i></a>
|
||||
|
||||
Reference in New Issue
Block a user