You could first groupby('date.year') and then groupby('date.month').
{% for year, year_group in EventsList|groupby('date.year') %}
{% for month, list in year_group|groupby('date.month') %}
{{ month }} {{ year }}
{% for event in list %}
{{event.title}}
{% endfor %}
{% endfor %}
{% endfor %}