Untitled
unknown
plain_text
2 months ago
463 B
5
Indexable
{% set flights = state_attr('sensor.flightradar24_airport_arrivals','flights') | default([], true) %}
| TIME | FROM | FLIGHT | REMARK |
| ---- | ---- | ------ | ------ | {% for f in flights %}
| {{ f.time_scheduled_arrival | timestamp_custom('%H:%M') if f.time_scheduled_departure else '--:--' }} | {{ f.airport_city | default('---', true) }} | {{ f.flight_number | default('---', true) }} | {{ f.status_text | default('---', true) }} | {% endfor %}
Editor is loading...
Leave a Comment