Skip to content

Instantly share code, notes, and snippets.

@corstian
Created August 7, 2018 16:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corstian/ea7694d18d3616b47553e9db4f4c3c22 to your computer and use it in GitHub Desktop.
Save corstian/ea7694d18d3616b47553e9db4f4c3c22 to your computer and use it in GitHub Desktop.
This gist contains the html code to display a table to display the flight log according to EASA standards. Bootstrap has been used.
<table class="table table-bordered">
<thead>
<tr>
<th scope="col" rowspan=2>#</th>
<th scope="col">Date</th>
<th scope="col" colspan=2>Departure</th>
<th scope="col" colspan=2>Arrival</th>
<th scope="col" colspan=2>Aircraft</th>
<th scope="col" colspan=2>Single Pilot Time</th>
<th scope="col" rowspan=2>Multi Pilot Time</th>
<th scope="col" rowspan=2>Total Flight Time</th>
<th scope="col" rowspan=2>PiC Name</th>
<th scope="col" colspan=2>Landings</th>
<th scope="col" colspan=2>Operational Condition Time</th>
<th scope="col" colspan=4>Pilot Function Time</th>
<th scope="col" colspan=2>FSTD Session</th>
<th scope="col" rowspan=2>Remarks and Endorsements</th>
</tr>
<tr>
<th scope="col">dd/mm/yyyy</th>
<th scope="col">Place</th>
<th scope="col">Time</th>
<th scope="col">Place</th>
<th scope="col">Time</th>
<th scope="col">Type</th>
<th scope="col">Registration</th>
<th scope="col">SE</th>
<th scope="col">ME</th>
<th scope="col">Day</th>
<th scope="col">Night</th>
<th scope="col">Night</th>
<th scope="col">IFR</th>
<th scope="col">PiC</th>
<th scope="col">Copilot</th>
<th scope="col">Dual</th>
<th scope="col">Instruction</th>
<th scope="col">Type</th>
<th scope="col">Total Time</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>07/03/2015</td>
<td>LKPR</td>
<td>06:07</td>
<td>EHAM</td>
<td>07:34</td>
<td>A319</td>
<td>OK-MEL</td>
<td></td>
<td></td>
<td>1:27</td>
<td>1:27</td>
<td>SELF</td>
<td>1</td>
<td></td>
<td>00:01</td>
<td>01:27</td>
<td>01:27</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment