diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-09-25 15:26:38 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-28 12:15:20 +0100 |
commit | 011fff384002b8e75dc69e46b884cb2b9e42b140 (patch) | |
tree | 62333f93d1363591ea60b2e6b82bf9988bfc0cda /archaeological_warehouse/templates | |
parent | 2d35da2cd7c32dc0938d5235838d5488b319e8c9 (diff) | |
download | Ishtar-011fff384002b8e75dc69e46b884cb2b9e42b140.tar.bz2 Ishtar-011fff384002b8e75dc69e46b884cb2b9e42b140.zip |
Containers: fix statistics on warehouse sheet
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 dcaa12215..b6f93cc57 100644 --- a/archaeological_warehouse/templates/ishtar/sheet_warehouse.html +++ b/archaeological_warehouse/templates/ishtar/sheet_warehouse.html @@ -144,7 +144,7 @@ <tbody> {% for item in items %} <tr> - {% for local in item.0 %}<td>{{local}}</td>{% endfor %} + {% for local in item.0 %}<td>{{local|safe}}</td>{% endfor %} <td class="text-right">{{item.1}}</td> </tr> {% endfor %} @@ -175,7 +175,7 @@ <tbody> {% for item in items %} <tr> - {% for local in item.0 %}<td class="text-center">{{local}}</td>{% endfor %} + {% for local in item.0 %}<td>{{local|safe}}</td>{% endfor %} <td class="text-center">{{item.1}}</td> </tr> {% endfor %} |