Today, with local calendar, only 2 actions are available:
- calendar.create_event
- calendar.get_events
In my point of view, It missing 2 actions to get full power on calendar:
- calendar.edit_event => possibility to change startday, endday, summary, etc…
- calendar.delete_event => opposite of create
Besides, I would like to be able to access to calendar object through templating.
The following exemple in documentation should works also in the develpoment editor:
Your school calendar for today:
{% for event in agenda["calendar.school_calendar"]["events"] %}
{{ event.start}}: {{ event.summary }}<br>
{% endfor %}
Your work calendar for today:
{% for event in agenda["calendar.work_calendar"]["events"] %}
{{ event.start}}: {{ event.summary }}<br>
{% endfor %}
But currently variable agenda does not exists so sad