summaryrefslogtreecommitdiff
path: root/templates/pages/show.jinja
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2013-04-14 20:16:23 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2013-04-14 20:16:23 +0200
commita98445a75c3ac2a46540eee146129f7c77e005d5 (patch)
tree25c916e288fb9aa90e37ce82b0b7b81eaa82a46a /templates/pages/show.jinja
parentec08e8522193d01f691c925484fd011dc8fc5ee0 (diff)
downloadkosten-a98445a75c3ac2a46540eee146129f7c77e005d5.tar.gz
kosten-a98445a75c3ac2a46540eee146129f7c77e005d5.tar.bz2
kosten-a98445a75c3ac2a46540eee146129f7c77e005d5.zip
Simplify some things
Diffstat (limited to '')
-rw-r--r--templates/pages/show.jinja7
1 files changed, 5 insertions, 2 deletions
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 @@
<br>
{% 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 %}