diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2022-07-31 18:58:46 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2022-07-31 18:58:46 +0300 |
commit | a2a5e9200ec5a588729a19684bba9c045dad8ef6 (patch) | |
tree | 8775903f730ca74795b447d16d79bc3ff8460065 /templates/yearwallets.html | |
parent | c1ba6a39a5f556d832da22e1f8e8ab33494f755b (diff) | |
download | troggle-a2a5e9200ec5a588729a19684bba9c045dad8ef6.tar.gz troggle-a2a5e9200ec5a588729a19684bba9c045dad8ef6.tar.bz2 troggle-a2a5e9200ec5a588729a19684bba9c045dad8ef6.zip |
wallets per person - slow implementation
Diffstat (limited to 'templates/yearwallets.html')
-rw-r--r-- | templates/yearwallets.html | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/templates/yearwallets.html b/templates/yearwallets.html index 87843d2..ce061c0 100644 --- a/templates/yearwallets.html +++ b/templates/yearwallets.html @@ -8,20 +8,21 @@ plans and elevations. It also contains scans of centre-line survex output on which hand-drawn passage sections are drawn. These hand-drawn passages will eventually be traced to produce Tunnel or Therion drawings and eventually the final complete cave survey. -<p>This lists all the files in a wallet, some of which may not be for this specific cave. + <p>See also wallets <ul> -<li>per cave, e.g. <a href="/cave/scans/1623-204">1623/204</a> +<li>per cave, e.g. <a href="/cave/scans/1623-161">1623/161</a> +<li>per person, e.g. <a href="/wallets/person/MichaelSargent">Michael Sargent</a> </ul> <table width=95%> -<tr><th>Wallet</th><th>Wallet Date</th><th>Wallet Name</th><th>People</th><th>Cave</th><th>Scans</th><th>Survex blocks</th><th>Drawings using these scans</th></tr> +<tr><th>Wallet</th><th width=8%>Wallet Date</th><th>Wallet Name</th><th>People</th><th>Cave</th><th>Scans</th><th>Survex blocks</th><th>Drawings using these scans</th></tr> {% for wallet in manywallets|dictsort:"walletname" %} <tr> <td style="padding:2px"><a href="{{wallet.get_absolute_url}}">{{wallet.walletname}}</a></td> <td style="padding:2px">{{wallet.date}}</td> <td style="padding:2px">{{wallet.name}}</td> - <td style="padding:2px">{{wallet.people}}</td> + <td style="padding:2px">{{wallet.persons}}</td> <td style="padding:2px">{{wallet.cave}}</td> <td align="center" style="padding:2px"><a href="{{wallet.get_absolute_url}}">{{wallet.singlescan_set.all|length}}</a></td> |