Hi, I want to do the following:
...
schedules:
- id: 5
activated: true
{{monday}}:
startTime:
...
The value monday should come from a template, like
schedules:
- id: 5
activated: true
{{ now().strftime('%A') }}:
startTime: >
Is there any way to do something like this?