]> git.parisson.com Git - mezzo.git/commitdiff
fix links
authorGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Fri, 8 Apr 2016 12:50:12 +0000 (14:50 +0200)
committerGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Fri, 8 Apr 2016 12:50:26 +0000 (14:50 +0200)
app/templates/agenda/event_detail.html

index 3b0c2ba372b5709645919473420e79f140906a26..7310556a8a70644f93d09b37b0c21244abc49949 100644 (file)
     {% with event.get_previous_by_publish_date as previous %}
         {% if previous %}
             <li class="split-left">
-                <a href="{{ previous.get_absolute_url }}" class="pager__item--before">&larr; {{ previous }}</a>
+                <a href="{{ previous.get_absolute_url }}" class="pager__item--before">&larr; {% trans "Previous event" %}</a>
             </li>
         {% endif %}
     {% endwith %}
     {% with event.get_next_by_publish_date as next %}
         {% if next %}
             <li class="split-right">
-                <a href="{{ next.get_absolute_url }}" class="pager__item--after">{{ next }} &rarr;</a>
+                <a href="{{ next.get_absolute_url }}" class="pager__item--after">{% trans "Next event" %} &rarr;</a>
             </li>
         {% endif %}
     {% endwith %}