diff options
-rw-r--r-- | templates/expedition.html | 1 | ||||
-rw-r--r-- | templates/personexpedition.html | 8 |
2 files changed, 7 insertions, 2 deletions
diff --git a/templates/expedition.html b/templates/expedition.html index 1e76470..98cc871 100644 --- a/templates/expedition.html +++ b/templates/expedition.html @@ -18,6 +18,7 @@ {% endfor %} </p> <p>See also the <a href="/years/{{expedition.year}}/">documentation index</a> for this Expo +<p>See also the <a href="/expofiles/surveyscans/{{expedition.year}}/walletindex.html">wallet completion status</a> for this Expo {% if logged_in %} <p>Reparse and reload this year's logbook by clicking here: <a href="/expedition/{{expedition.year}}?reload">RELOAD</a> {% endif %} diff --git a/templates/personexpedition.html b/templates/personexpedition.html index 90d4f26..bfb81ee 100644 --- a/templates/personexpedition.html +++ b/templates/personexpedition.html @@ -15,7 +15,7 @@ If anyone really cares, they can always look in the original survex file <p>{{message}}</p> <p>{{personexpedition.surveyedleglength|stringformat:".1f"}} m surveyed this year.</p> -<p><b>Other years:</b> +<p><b>Other years: </b> {% for otherpersonexpedition in personexpedition.person.personexpedition_set.all %} {% if otherpersonexpedition == personexpedition %} | <b>{{otherpersonexpedition.expedition.year}}</b> @@ -24,7 +24,11 @@ If anyone really cares, they can always look in the original survex file {% endif %} {% endfor %} </p> - +<p><b>Wallet status</b> +{% for otherpersonexpedition in personexpedition.person.personexpedition_set.all %} + | <a href="/expofiles/surveyscans/{{ otherpersonexpedition.expedition.year }}/{{personexpedition.person|safe}}.html">{{ otherpersonexpedition.expedition.year }}</a> +{% endfor %} +</p> <h3>Table of all trips and surveys aligned by date</h3> <div> <table class="survexcontibutions"> |