{% extends "base.html" %} {% block content %}
Nr. | Aircraft | Type | Takeoff | Landing | AGL | ||
---|---|---|---|---|---|---|---|
{{ loop.index }} | {{ device_info.registration }} | {{ device_info.aircraft }} | {% if logbook.takeoff_timestamp is not none %} {{ logbook.takeoff_timestamp.strftime('%H:%M') }} {% endif %} | {% if logbook.takeoff_track is not none %} {{ '%02d' | format(logbook.takeoff_track/10) }} {% endif %} | {% if logbook.landing_timestamp is not none %} {{ logbook.landing_timestamp.strftime('%H:%M') }} {% endif %} | {% if logbook.landing_track is not none %} {{ '%02d' | format(logbook.landing_track/10) }} {% endif %} | {% if logbook.max_altitude is not none %} {{ logbook.max_altitude }} {% endif %} |