{% extends 'html/base.html' %}
{% block styles %}
{{ super() }}
{% endblock %}
{% block body_classes %}booking-flight-page{% endblock %}
{% block body %}
{% include "html/header/default.html" %}
{% include "html/listings/booking-flight.html" %}
{% include "html/footer/simple.html" %}
{% endblock %}
{% block javascripts %}
{{ super() }}
{% endblock %}