{% extends "base.html" %} {% block content %}

Logbook

{% if entries is not none %} {% for entry in entries %} {% set logbook = entry[0] %} {% set device = entry[1] %} {% set device_info = entry[2] %} {% endfor %}
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 %}
{% endif %}
{% endblock %}