diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-09-19 16:00:58 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-09-19 16:00:58 +0200 |
commit | dd22f90b248ba60b7d247d8a06eedf56c84b955a (patch) | |
tree | 65131b09df6a41f321325a80c3ac010a8946c961 /archaeological_warehouse/templates | |
parent | 0941d3abe712958e2ace5fd6e6250ad8224305d0 (diff) | |
download | Ishtar-dd22f90b248ba60b7d247d8a06eedf56c84b955a.tar.bz2 Ishtar-dd22f90b248ba60b7d247d8a06eedf56c84b955a.zip |
Warehouse sheet: fix container list (refs #4240)
Diffstat (limited to 'archaeological_warehouse/templates')
-rw-r--r-- | archaeological_warehouse/templates/ishtar/sheet_warehouse.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_warehouse/templates/ishtar/sheet_warehouse.html b/archaeological_warehouse/templates/ishtar/sheet_warehouse.html index b3446c15a..ae032a8a4 100644 --- a/archaeological_warehouse/templates/ishtar/sheet_warehouse.html +++ b/archaeological_warehouse/templates/ishtar/sheet_warehouse.html @@ -40,12 +40,12 @@ {% if item.containers.count %} <h4>{% trans "Containers" %}</h4> -{% dynamic_table_document '' 'containers' 'location' item.pk 'TABLE_COLS' output %} +{% dynamic_table_document '' 'containers' 'location_id' item.pk 'TABLE_COLS' output %} {% endif %} {% if item.owned_containers.count %} <h4>{% trans "Attached containers" %}</h4> -{% dynamic_table_document '' 'containers' 'responsible' item.pk 'TABLE_COLS' output %} +{% dynamic_table_document '' 'containers' 'responsible_id' item.pk 'TABLE_COLS' output %} {% endif %} <h3>{% trans "Statistics" %}</h3> |