summaryrefslogtreecommitdiff
path: root/template/calendar_head.j2
diff options
context:
space:
mode:
Diffstat (limited to 'template/calendar_head.j2')
-rw-r--r--template/calendar_head.j210
1 files changed, 10 insertions, 0 deletions
diff --git a/template/calendar_head.j2 b/template/calendar_head.j2
new file mode 100644
index 0000000..d8df951
--- /dev/null
+++ b/template/calendar_head.j2
@@ -0,0 +1,10 @@
+<div class="calendar-listing {{ class }}">
+{%- for event in events[:7] %}
+ {% include 'calendar_event.j2' %}
+{%- endfor %}
+{%- for event in events[7:] %}
+ {% if not event.recurring %}
+ {% include 'calendar_event.j2' %}
+ {% endif %}
+{%- endfor %}
+</div>