diff options
author | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:15:49 +0100 |
---|---|---|
committer | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:15:49 +0100 |
commit | 32e1e6b9ab56729f92101d5d60746ae22ef0aa06 (patch) | |
tree | 8c092735880560c1204515e2a63fca8ac9178d42 /templates/person.html | |
parent | 01073863f37d7b0a6e6b27627907d9e3ef99fc3e (diff) | |
download | troggle-32e1e6b9ab56729f92101d5d60746ae22ef0aa06.tar.gz troggle-32e1e6b9ab56729f92101d5d60746ae22ef0aa06.tar.bz2 troggle-32e1e6b9ab56729f92101d5d60746ae22ef0aa06.zip |
[svn] make the person logbooks work
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8044 by julian @ 10/30/2008 1:13 PM
Diffstat (limited to 'templates/person.html')
-rw-r--r-- | templates/person.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/person.html b/templates/person.html index c710208..9d79141 100644 --- a/templates/person.html +++ b/templates/person.html @@ -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>
|