{% if flights.status is defined %}
{{ flights.code }} : {{ flights.message }}
{% else %}
{{ flights.sessionid }}
{% for key, flight in flights %}
{% if key != "sessionid" %}
{{ flight.fare.net}}
{% for ptop in flight.pointToPoints %}
{{ ptop.id }}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{{ dump(flights) }}