summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--templates/expedition.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/templates/expedition.html b/templates/expedition.html
index 2f10326..4dd2a45 100644
--- a/templates/expedition.html
+++ b/templates/expedition.html
@@ -68,7 +68,7 @@ an "S" for a survey trip. The colours are the same for people on the same trip.
<h3>Logbooks and survey trips per day</h3>
<table class="expeditionlogbooks">
-<tr><th>Date</th><th>Logged trips</th><th>Surveys</th></tr>
+<tr><th>Date</th><th>Logged trips</th><th>Surveys</th><th>Wallets</th></tr>
{% regroup dateditems|dictsort:"date" by date as dates %}
{% for date in dates %}
<tr>
@@ -79,7 +79,11 @@ an "S" for a survey trip. The colours are the same for people on the same trip.
<td>{% for item in date.list %}
{% if item.isSurvexBlock %}<a href="{% url "svx" item.survexfile.path %}">{{item.name}}</a><br/>{% endif %}
{% endfor %}</td>
-</tr>
+<td>{% for item in date.list %}
+ {% if item.isSurvexBlock %}
+ <a href="{{item.scanswallet.get_absolute_url}}">{{item.scanswallet.walletname}}</a><br/>
+ {% endif %}
+ {% endfor %}</td></tr>
{% endfor %}
</table>