[svn r8044] make the person logbooks work

This commit is contained in:
julian
2008-10-30 14:13:35 +01:00
parent dfebde5da1
commit 727c2994fb
6 changed files with 20 additions and 9 deletions

View File

@@ -12,9 +12,11 @@
{{personexpedition.expedition}}
</td><td>
<div>
<ul>
{% for persontrip in personexpedition.persontrip_set.all %}
<a href="/logbook/{{persontrip.logbookentry.id}}">{{persontrip.date}}</a>
<li><a href="/logbookentry/{{persontrip.logbookentry.id}}">{{persontrip.date}}</a> ({{persontrip.logbookentry.place}}) - {{persontrip.logbookentry.title}}</li>
{% endfor %}
<ul>
</div>
</td></tr></table>
</li>

View File

@@ -14,7 +14,7 @@
</td><td>
<div>
{% for persontrip in personexpedition.persontrip_set.all %}
<a href="/logbook/{{persontrip.logbookentry.id}}">{{persontrip.date}}</a>
<a href="/logbookentry/{{persontrip.logbookentry.id}}">{{persontrip.date}}</a>
{% endfor %}
</div>
</td></tr></table>