From fc3bdd74df7be770559918a473a475243d830dfa Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Fri, 8 Apr 2016 14:50:12 +0200 Subject: [PATCH] fix links --- app/templates/agenda/event_detail.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/agenda/event_detail.html b/app/templates/agenda/event_detail.html index 3b0c2ba3..7310556a 100644 --- a/app/templates/agenda/event_detail.html +++ b/app/templates/agenda/event_detail.html @@ -135,7 +135,7 @@ {% with event.get_previous_by_publish_date as previous %} {% if previous %}
  • - ← {{ previous }} + ← {% trans "Previous event" %}
  • {% endif %} {% endwith %} @@ -143,7 +143,7 @@ {% with event.get_next_by_publish_date as next %} {% if next %}
  • - {{ next }} → + {% trans "Next event" %} →
  • {% endif %} {% endwith %} -- 2.39.5