diff options
author | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:43:20 +0100 |
---|---|---|
committer | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:43:20 +0100 |
commit | 60735a9b3acae9d883589c51aa953ced40cc7488 (patch) | |
tree | 83c28a07c7e6227ba9faae0228461e7e6daae69c /templates/survexblock.html | |
parent | 6598dd510539a9060dc6a38a3cd38b6228e57b88 (diff) | |
download | troggle-60735a9b3acae9d883589c51aa953ced40cc7488.tar.gz troggle-60735a9b3acae9d883589c51aa953ced40cc7488.tar.bz2 troggle-60735a9b3acae9d883589c51aa953ced40cc7488.zip |
[svn] merge the trip table to have surveys by date
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8221 by julian @ 1/24/2009 2:01 PM
Diffstat (limited to 'templates/survexblock.html')
-rw-r--r-- | templates/survexblock.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/survexblock.html b/templates/survexblock.html index ef392df..dedf09f 100644 --- a/templates/survexblock.html +++ b/templates/survexblock.html @@ -29,10 +29,10 @@ <p>Date: {{survexblock.date}}</p>
<table>
-{% for personrole in survexblock.personrole_set.all %}
+{% for personrole in survexblock.GetPersonroles %}
<tr>
- <td><a href="{% url personexpedition personrole.personexpedition.person.href personrole.personexpedition.expedition.year%}">{{personrole.personexpedition.person}}</a></td>
- <td>{{personrole.role}}</td>
+ <td><a href="{% url personexpedition personrole.person.href personrole.expeditionyear%}">{{personrole.person}}</a></td>
+ <td>{{personrole.roles}}</td>
</tr>
{% endfor %}
</table>
@@ -40,7 +40,7 @@ </div>
-<div id="col1">
+<div class="survexblock">
{{ftext|survex_to_html}}
</div>
|