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

Logbook

{% if logbook is not none %} {% for entry in logbook %} {% endfor %}
Nr. Aircraft Type Takeoff Landing AGL
{{ loop.index }} {{ entry.registration }} {{ entry.aircraft }} {% if entry.takeoff_timestamp is not none %} {{ entry.takeoff_timestamp.strftime('%H:%M') }} {% endif %} {% if entry.takeoff_track is not none %} {{ '%02d' | format(entry.takeoff_track) }} {% endif %} {% if entry.landing_timestamp is not none %} {{ entry.landing_timestamp.strftime('%H:%M') }} {% endif %} {% if entry.landing_track is not none %} {{ '%02d' | format(entry.landing_track) }} {% endif %} {% if entry.max_altitude is not none %} {{ entry.max_altitude }} {% endif %}
{% endif %}
{% endblock %}