From a98445a75c3ac2a46540eee146129f7c77e005d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Sun, 14 Apr 2013 20:16:23 +0200 Subject: Simplify some things --- templates/pages/show.jinja | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'templates/pages/show.jinja') diff --git a/templates/pages/show.jinja b/templates/pages/show.jinja index e7d340e..895a107 100644 --- a/templates/pages/show.jinja +++ b/templates/pages/show.jinja @@ -32,11 +32,14 @@
{% endfor %} + {# Note: exps are given _reversed_, i.e. "exps | last" is + the _first_ on the timeline #} {% set d = prev_date(exps | last) %} {{ left_arrow(url_for(".show_date", **d), d | date) }} - {% if not is_last %} - {% set d = next_date(exps | last) %} + {% set first = exps | first %} + {% if not is_last(first) %} + {% set d = next_date(first) %} {{ right_arrow(url_for(".show_date", **d), d | date) }} {% endif %} {% endblock content %} -- cgit v1.2.3