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

Airport Details

Name:{{ airport.country_code }} {{ airport.name }}
Code:{{ airport.code }}
Altitude:{{ airport.altitude|int }} m
Style:{{ airport.style }}
Description:{{ airport.description }}
Runway Direction:{{ airport.runway_direction }}
Runway Length:{{ airport.runway_length }} m
Frequency:{{ airport.frequency }} MHz

Seen Devices

{% for device in devices %} {% endfor %}
Address Registration Last takeoff/landing Software version
{{ device.address }} {% if device.info is none %}-{% else %}{{ device.info.registration }}{% endif %} {% if device.takeoff_landings %}{% set last_action = device.takeoff_landings|last %}{% if last_action.is_takeoff == True %}↗{% else %}↘{% endif %} @ {{ last_action.timestamp.strftime('%Y-%m-%d %H:%M:%S') }}{% endif %} {% if device.software_version is not none %}{{ device.software_version }}{% else %}-{% endif %}
{% endblock %}