delzear / hass-formulaoneapi

Formula One API Integration Into Home Assistant
53 stars 10 forks source link

Convert event time to local timezone #15

Closed bernabauer closed 3 years ago

bernabauer commented 3 years ago

Is there a way to show the time of the event in my timezone?

bernabauer commented 3 years ago

I figured it out

for the next race card:

Date : {{ as_timestamp(nr.date + ' ' + nr.time) | timestamp_custom("%m/%d ") }}
Time : {{ as_timestamp(nr.date + ' ' + nr.time) | timestamp_custom("%H:%M") }}

for the race agenda

    <td>{{ as_timestamp(races.date + ' ' + races.time) | timestamp_custom("%d/%m ") }}</td>
    <td>{{ as_timestamp(races.date + ' ' + races.time) | timestamp_custom("%H:%M") }}</td>
</tr>