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/cavewallets.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/cavewallets.html')
-rw-r--r-- | templates/cavewallets.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/templates/cavewallets.html b/templates/cavewallets.html index 3208927..8fd5d83 100644 --- a/templates/cavewallets.html +++ b/templates/cavewallets.html @@ -13,17 +13,18 @@ traced to produce Tunnel or Therion drawings and eventually the final complete c <p>See also wallets <ul> <li>per year, e.g. <a href="/wallets/year/2019">2019</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>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>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 align="center" style="padding:2px"><a href="{{wallet.get_absolute_url}}">{{wallet.singlescan_set.all|length}}</a></td> <td style="padding:2px"> |