<?php echo HTML::script('packages/datatables/jquery.dataTables.min.js'); ?>
<?php echo HTML::script('packages/datatables/dataTables.bootstrap.js'); ?>
<?php echo HTML::script('js/flights.js'); ?>
<?php echo HTML::style('packages/datatables/dataTables.bootstrap.css',array('type' => 'text/css')); ?>
<div class="container-fluid">

    <div class="both"></div>
    <div class="page-header">
        <h1>Flights</h1>
    </div>
    <div class="table-responsive">
        <table id="users_table" class="table-admin table table-striped table-bordered" cellspacing="0" width="100%">
            <thead>
            <tr>
                <th>ID</th>
                <th>A/C Type</th>
                <th>Flight Type</th>
                <th>Created date</th>
                <th>Updated date</th>
            </tr>
            </thead>
            <tbody>

            </tbody>
        </table>
    </div>
</div>