{% extends "base.html" %} {% block content %}
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 |
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 %} |