diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-08-22 12:07:32 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-08-22 12:07:32 +0200 |
commit | eef6cb163eabb452506e085210464479b449f496 (patch) | |
tree | 514d93391149d0fa10e488b1e4195d22e29001e2 /archaeological_warehouse/templates | |
parent | 2fde9cc0367c35052068c000f5e3ee26e54b3e20 (diff) | |
download | Ishtar-eef6cb163eabb452506e085210464479b449f496.tar.bz2 Ishtar-eef6cb163eabb452506e085210464479b449f496.zip |
Warehouse sheet: fix warehouse container stats for localisation not full
Diffstat (limited to 'archaeological_warehouse/templates')
-rw-r--r-- | archaeological_warehouse/templates/ishtar/sheet_warehouse.html | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/archaeological_warehouse/templates/ishtar/sheet_warehouse.html b/archaeological_warehouse/templates/ishtar/sheet_warehouse.html index 1b16819b6..61553b839 100644 --- a/archaeological_warehouse/templates/ishtar/sheet_warehouse.html +++ b/archaeological_warehouse/templates/ishtar/sheet_warehouse.html @@ -64,7 +64,10 @@ {% for items in item.number_of_finds_by_place %} <table class='table table-striped'> {% for item in items %} - <tr><th>{{item.0}}</th><td>{{item.1}}</td></tr> + <tr> + <th>{{item.0}}</th> + <td class="text-right">{{item.1}}</td> + </tr> {% endfor %} </table> {% endfor %} @@ -81,7 +84,10 @@ {% for items in item.number_of_containers_by_place %} <table class='table table-striped'> {% for item in items %} - <tr><th>{{item.0}}</th><td>{{item.1}}</td></tr> + <tr> + <th>{{item.0}}</th> + <td class="text-right">{{item.1}}</td> + </tr> {% endfor %} </table> {% endfor %} |