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

Airlines

{% for obj in page.object_list %} {% empty %} {% endfor %}
Airline 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 airlines found
{% endblock table %}