summaryrefslogtreecommitdiff
path: root/template/calendar_head.j2
blob: 03f6a4dc441b13903b4e0bf09173c82b330e7ab6 (plain)
1
2
3
4
5
6
7
<div class="calendar-listing {{ class }}">
{%- for event in events %}
{%- if event.start <= cutoff or not event.recurring %}
  {% include 'calendar_event.j2' %}
{%- endif %}
{%- endfor %}
</div>