diff options
Diffstat (limited to 'archaeological_warehouse/templates/ishtar/sheet_warehouse.html')
-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 %} |