summaryrefslogtreecommitdiffstats
path: root/templates/personexpedition.html
diff options
context:
space:
mode:
authorsubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-05-13 05:39:52 +0100
committersubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-05-13 05:39:52 +0100
commit0ba4dd4ef47eeeb8ef38b4c30b6d39649c56342a (patch)
tree7a806015bda042e5d13d55e6d52a37924fb4e11e /templates/personexpedition.html
parent39ab4d25147a8e115fc4f6f05c8246dbe51c3ca0 (diff)
downloadtroggle-0ba4dd4ef47eeeb8ef38b4c30b6d39649c56342a.tar.gz
troggle-0ba4dd4ef47eeeb8ef38b4c30b6d39649c56342a.tar.bz2
troggle-0ba4dd4ef47eeeb8ef38b4c30b6d39649c56342a.zip
[svn] survey block object
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8199 by julian @ 1/19/2009 12:22 AM
Diffstat (limited to 'templates/personexpedition.html')
-rw-r--r--templates/personexpedition.html10
1 files changed, 8 insertions, 2 deletions
diff --git a/templates/personexpedition.html b/templates/personexpedition.html
index 91c618a..bbbc067 100644
--- a/templates/personexpedition.html
+++ b/templates/personexpedition.html
@@ -7,13 +7,19 @@
{% block content %}
<h2>{{personexpedition.person}}: {{personexpedition.expedition}} ({{personexpedition.date_from}} - {{personexpedition.date_to}})</h2>
+<h3>{{message}}</h3>
+
+<p>Needs links fore and back through expeditions attended by this person (or as a complete barchart type list with one date in bold)</p>
+<p>Needs lists below to be sorted by date, and the duplicates removed from survey role list</p>
+<p>Finally, a correspondence between these two columns</p>
+
<div id="col2">
<table class="survexcontibutions">
<tr><th>Date</th><th>Place</th><th>Role</th></tr>
{% for personrole in personexpedition.personrole_set.all %}
<tr>
- <td>{{personrole.survex_block.start_month}}</td>
- <td>{{personrole.survex_block.name}}</td>
+ <td>{{personrole.survex_block.date}}</td>
+ <td><a href="{% url survexblock personrole.survex_block.survexpath %}">{{personrole.survex_block.survexpath}}</a></td>
<td>{{personrole.role}}</td>
</tr>
{% endfor %}