diff options
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> |