Currently template files work on the assumption the training is half days. When training is in-person the schedule should be for a full day 0930-1600.
Suggested changes:
config.yaml should have different syntax:
date: "2021-11"
timing: all-day # accepted values being `morning`, `afternoon`, `all-day`
The jinja logic will become:
{% if timing == "morning" %}
Morning timetable
{% else if timing == "afternoon" %}
Afternoon timetable
{% else if timing == "all-day" %}
All-day timetable
{% endif %}
Currently template files work on the assumption the training is half days. When training is in-person the schedule should be for a full day 0930-1600.
Suggested changes:
config.yamlshould have different syntax:The jinja logic will become: