summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Franke <nobody@nowhere.ws>2016-04-05 15:56:31 -0300
committerChristian Franke <nobody@nowhere.ws>2016-04-05 15:56:31 -0300
commit1a1af084931f8e056e951389ca0c414401ba7b94 (patch)
tree9aef9c4888a8a73168b66d6441f20ec477fd350b
parentf1f4193f8b8607084c0ac56a7ecffe2b56e8a68e (diff)
Show one weeks worth of events on landing page
-rw-r--r--scripts/calendar_plugin.py3
-rw-r--r--template/calendar_head.j28
2 files changed, 4 insertions, 7 deletions
diff --git a/scripts/calendar_plugin.py b/scripts/calendar_plugin.py
index af7408b..c277a9f 100644
--- a/scripts/calendar_plugin.py
+++ b/scripts/calendar_plugin.py
@@ -31,7 +31,8 @@ class CalendarPlugin:
def _get_calendar_head(self):
return self.template_env.get_template('calendar_head.j2').render({
'events': self.events,
- 'class': 'calendar-head'
+ 'class': 'calendar-head',
+ 'cutoff': datetime.now() + timedelta(days=7)
}).encode('utf-8')
def process_content(self, page_content):
diff --git a/template/calendar_head.j2 b/template/calendar_head.j2
index d8df951..17bc58e 100644
--- a/template/calendar_head.j2
+++ b/template/calendar_head.j2
@@ -1,10 +1,6 @@
<div class="calendar-listing {{ class }}">
-{%- for event in events[:7] %}
+{%- for event in events %}
+{%- if event.start <= cutoff or not event.recurring %}
{% include 'calendar_event.j2' %}
{%- endfor %}
-{%- for event in events[7:] %}
- {% if not event.recurring %}
- {% include 'calendar_event.j2' %}
- {% endif %}
-{%- endfor %}
</div>