summaryrefslogtreecommitdiffstats
path: root/templates/logbookentry.html
diff options
context:
space:
mode:
authorsubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-05-13 05:58:58 +0100
committersubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-05-13 05:58:58 +0100
commit90da85e8563298a23e860db08db952f9a6b46f2d (patch)
tree1686e07bdbdcf5468c9fe49d352f02e02221f14a /templates/logbookentry.html
parente8da6b9b8b0d5390d26832af42550c4e651a82dd (diff)
downloadtroggle-90da85e8563298a23e860db08db952f9a6b46f2d.tar.gz
troggle-90da85e8563298a23e860db08db952f9a6b46f2d.tar.bz2
troggle-90da85e8563298a23e860db08db952f9a6b46f2d.zip
[svn] revert some of the changes (href element) so that the links work
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8267 by julian @ 3/11/2009 10:44 AM
Diffstat (limited to 'templates/logbookentry.html')
-rw-r--r--templates/logbookentry.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/logbookentry.html b/templates/logbookentry.html
index 690d21c..2148102 100644
--- a/templates/logbookentry.html
+++ b/templates/logbookentry.html
@@ -44,13 +44,13 @@
</td>
<td>
- {% if persontrip.get_previous_by_date %}
- <a href="{{ persontrip.get_previous_by_date.logbook_entry.get_absolute_url }}">{{persontrip.get_previous_by_date.date}}</a>
+ {% if persontrip.persontrip_prev %}
+ <a href="{{ persontrip.persontrip_prev.logbook_entry.get_absolute_url }}">{{persontrip.persontrip_prev.date}}</a>
{% endif %}
</td>
<td>
- {% if persontrip.get_next_by_date %}
- <a href="{{ persontrip.get_next_by_date.logbook_entry.get_absolute_url }}">{{persontrip.get_next_by_date.date}}</a>
+ {% if persontrip.persontrip_next %}
+ <a href="{{ persontrip.persontrip_next.logbook_entry.get_absolute_url }}">{{persontrip.persontrip_next.date}}</a>
{% endif %}
</td>
</tr>