consistency on admin tables

This commit is contained in:
Nabeel Shahzad
2017-08-23 14:59:15 -05:00
parent 0d29369e54
commit 33ccc966b2
9 changed files with 17 additions and 17 deletions

View File

@@ -1,10 +1,10 @@
<table class="table table-responsive" id="aircrafts-table"> <table class="table table-hover table-responsive" id="aircrafts-table">
<thead> <thead>
<th>Subfleet</th> <th>Subfleet</th>
<th>Name</th> <th>Name</th>
<th>Registration</th> <th>Registration</th>
<th style="text-align: center;">Active</th> <th style="text-align: center;">Active</th>
<th style="text-align: right;">Actions</th> <th style="text-align: right;"></th>
</thead> </thead>
<tbody> <tbody>
@foreach($aircraft as $ac) @foreach($aircraft as $ac)

View File

@@ -1,10 +1,10 @@
<table class="table table-responsive" id="airlines-table"> <table class="table table-hover table-responsive" id="airlines-table">
<thead> <thead>
<th>Code</th> <th>Code</th>
<th>IATA</th> <th>IATA</th>
<th>Name</th> <th>Name</th>
<th class="text-center">Active</th> <th class="text-center">Active</th>
<th class="text-right">Action</th> <th></th>
</thead> </thead>
<tbody> <tbody>
@foreach($airlines as $al) @foreach($airlines as $al)

View File

@@ -1,5 +1,5 @@
<div id="airports_table_wrapper"> <div id="airports_table_wrapper">
<table class="table table-responsive" id="airports-table"> <table class="table table-hover table-responsive" id="airports-table">
<thead> <thead>
<th>ICAO</th> <th>ICAO</th>
<th>Name</th> <th>Name</th>
@@ -7,7 +7,7 @@
<th style="text-align: center;">100LL</th> <th style="text-align: center;">100LL</th>
<th style="text-align: center;">JetA</th> <th style="text-align: center;">JetA</th>
<th style="text-align: center;">MOGAS</th> <th style="text-align: center;">MOGAS</th>
<th colspan="3" style="text-align: right">Action</th> <th></th>
</thead> </thead>
<tbody> <tbody>
@foreach($airports as $airport) @foreach($airports as $airport)

View File

@@ -1,4 +1,4 @@
<table class="table table-responsive" id="fares-table"> <table class="table table-hover table-responsive" id="fares-table">
<thead> <thead>
<th>Code</th> <th>Code</th>
<th>Name</th> <th>Name</th>

View File

@@ -1,5 +1,5 @@
<div class="content table-responsive table-full-width"> <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> <thead>
<th>Flight #</th> <th>Flight #</th>
<th>Dep</th> <th>Dep</th>

View File

@@ -1,8 +1,8 @@
<table class="table table-responsive" id="pirepFields-table"> <table class="table table-hover table-responsive" id="pirepFields-table">
<thead> <thead>
<th>Name</th> <th>Name</th>
<th>Required</th> <th>Required</th>
<th colspan="3">Action</th> <th></th>
</thead> </thead>
<tbody> <tbody>
@foreach($fields as $field) @foreach($fields as $field)

View File

@@ -1,11 +1,11 @@
<table class="table table-responsive" id="pireps-table"> <table class="table table-hover table-responsive" id="pireps-table">
<thead> <thead>
<th>Pilot</th> <th>Pilot</th>
<th>Flight</th> <th>Flight</th>
<th>Aircraft</th> <th>Aircraft</th>
<th>Flight Time</th> <th>Flight Time</th>
<th>Level</th> <th>Level</th>
<th colspan="3" style="text-align: right">Action</th> <th></th>
</thead> </thead>
<tbody> <tbody>
@foreach($pireps as $pirep) @foreach($pireps as $pirep)

View File

@@ -1,12 +1,12 @@
<div id="ranks_table_wrapper"> <div id="ranks_table_wrapper">
<table class="table table-responsive"> <table class="table table-hover table-responsive">
<thead> <thead>
<th>Name</th> <th>Name</th>
<th>Hours</th> <th>Hours</th>
<th class="text-center">Auto Approve Acars</th> <th class="text-center">Auto Approve Acars</th>
<th class="text-center">Auto Approve Manual</th> <th class="text-center">Auto Approve Manual</th>
<th class="text-center">Auto Promote</th> <th class="text-center">Auto Promote</th>
<th class="text-right">Action</th> <th></th>
</thead> </thead>
<tbody> <tbody>
@foreach($ranks as $rank) @foreach($ranks as $rank)

View File

@@ -1,10 +1,10 @@
<table class="table table-responsive" id="subfleets-table"> <table class="table table-hover table-responsive" id="subfleets-table">
<thead> <thead>
<th>Airline</th> <th>Airline</th>
<th>Name</th> <th>Name</th>
<th>Type</th> <th>Type</th>
<th>Fuel Type</th> <th>Fuel Type</th>
<th colspan="3">Action</th> <th></th>
</thead> </thead>
<tbody> <tbody>
@foreach($subfleets as $subfleet) @foreach($subfleets as $subfleet)
@@ -23,7 +23,7 @@
- -
@endif @endif
</td> </td>
<td> <td class="text-right">
{!! Form::open(['route' => ['admin.subfleets.destroy', $subfleet->id], 'method' => 'delete']) !!} {!! Form::open(['route' => ['admin.subfleets.destroy', $subfleet->id], 'method' => 'delete']) !!}
<div class='btn-group'> <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> <a href="{!! route('admin.subfleets.show', [$subfleet->id]) !!}" class='btn btn-default btn-xs'><i class="glyphicon glyphicon-eye-open"></i></a>