diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2022-09-19 21:54:32 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2022-09-19 21:54:32 +0300 |
commit | 13b57d2bb6e82ed2b6d2c8716da91d47f3986df5 (patch) | |
tree | 60e1ff976fb4958528fb7788a967c0a6c66fe74b /templates/yearwallets.html | |
parent | 2648bada309fd5da0d66e32a9c6eade25ae0cc88 (diff) | |
download | troggle-13b57d2bb6e82ed2b6d2c8716da91d47f3986df5.tar.gz troggle-13b57d2bb6e82ed2b6d2c8716da91d47f3986df5.tar.bz2 troggle-13b57d2bb6e82ed2b6d2c8716da91d47f3986df5.zip |
year list for wallets by year
Diffstat (limited to 'templates/yearwallets.html')
-rw-r--r-- | templates/yearwallets.html | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/templates/yearwallets.html b/templates/yearwallets.html index 03c4822..51a56c0 100644 --- a/templates/yearwallets.html +++ b/templates/yearwallets.html @@ -11,10 +11,20 @@ traced to produce Tunnel or Therion drawings and eventually the final complete c {% include 'wallet_new.html' %} + + <p>See also wallets -<ul> +<ul style="width: 78%"> <li>per cave, e.g. <a href="/cave/scans/1623-161">1623/161</a>, <a href="/cave/scans/1623-290">1623/290</a>, <a href="/cave/scans/1623-291">1623/291</a>, <a href="/cave/scans/1623-264">1623/264</a> <li>per person, e.g. <a href="/wallets/person/Wookey">Wookey</a>, <a href="/wallets/person/ChrisDensham">Chris Densham</a>, <a href="/wallets/person/BeckaLawson">Becka</a> +<li>other years: +{% for otherexpedition in expeditions %} + {% if otherexpedition == expedition %} + | <b>{{otherexpedition.year}}</b> + {% else %} + | <a <a href="/wallets/year/{{ otherexpedition.year }}">{{otherexpedition.year}}</a> + {% endif %} +{% endfor %} </ul> {% include 'wallet_table.html' %} |