I have set up HA for use in a small community hall so that the heating system is controlled by their booking calendar. All works well. However, I need to hard code an offset to bring the heating on before the calendar event so that the hall is up to temperature before the users arrive. I would really like the offset configurable on the front end via an input_datetime but I am lead to believe that the offset field in a calendar trigger does not support templating. Is this correct, and if so, how can I get around this problem?
Current configuration:
entity_id: calendar.booking_calendar
event: start
offset: "-2:0:0"```
What I'd like:
```trigger: calendar
entity_id: calendar.booking_calendar
event: start
offset: "{{ states('input_datetime.heating_on_offset') }}"```