{% extends "table.html" %} {% load static %} {% block table %}

Airports

{% for obj in page.object_list %} {% empty %} {% endfor %}
Airport IATA ICAO
{% if obj.label %} {{ obj.label }} {% else %} Unknown {% endif %} {% if obj.iata %} {{ obj.iata }} {% else %} Unknown {% endif %} {% if obj.icao %} {{ obj.icao }} {% else %} Unknown {% endif %}
No airports found
{% endblock table %}