summaryrefslogtreecommitdiffstats
path: root/templates/person.html
diff options
context:
space:
mode:
authorsubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-05-13 05:44:35 +0100
committersubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-05-13 05:44:35 +0100
commit264594ed05b2723f443798a326d07afbbdaf185f (patch)
treecd482abf252c31f0fe9fc88796bf6eb45e6e20c9 /templates/person.html
parent1e1453f44351e0c8b7b725e008ef33bc53c70689 (diff)
downloadtroggle-264594ed05b2723f443798a326d07afbbdaf185f.tar.gz
troggle-264594ed05b2723f443798a326d07afbbdaf185f.tar.bz2
troggle-264594ed05b2723f443798a326d07afbbdaf185f.zip
[svn] made index of people
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8224 by julian @ 1/24/2009 6:26 PM
Diffstat (limited to 'templates/person.html')
-rw-r--r--templates/person.html26
1 files changed, 7 insertions, 19 deletions
diff --git a/templates/person.html b/templates/person.html
index 04eae1b..140aa8d 100644
--- a/templates/person.html
+++ b/templates/person.html
@@ -4,25 +4,13 @@
{% block title %}Person {{person|wiki_to_html_short}}{% endblock %}
{% block content %}
-<div class="personblock"><a href="{% url person person.href%}">{{person|wiki_to_html_short}}</a>
-<ul>
+
+<p>{{person|wiki_to_html_short}} has been on expo in the following years:</p>
+<p>
{% for personexpedition in person.personexpedition_set.all %}
- <li>
- <table><tr><td>
- {{personexpedition.expedition}}
- </td><td>
- <div>
- <ul>
- {% for persontrip in personexpedition.persontrip_set.all %}
- <li><a href="{% url logbookentry persontrip.logbook_entry.id %}">{{persontrip.date}}</a> {{persontrip.logbookentry}}
- ({{persontrip.logbookentry.place|wiki_to_html_short}}) -
- {{persontrip.logbookentry.title|wiki_to_html_short}}</li>
- {% endfor %}
- <ul>
- </div>
- </td></tr></table>
- </li>
+ | <a href="{% url personexpedition personexpedition.person.href personexpedition.expedition.year %}">{{personexpedition.expedition.year}}</a>
{% endfor %}
-</ul>
-</div>
+</p>
+
+
{% endblock %}