summaryrefslogtreecommitdiff
path: root/ishtar_common
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2024-05-09 13:08:57 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2024-05-10 13:13:02 +0200
commit01a74292ba7a2bf6f62b924f686a3531a26b30e9 (patch)
treeec5f9cc449a4c32da17ffe81e3eb167ad65c5dc9 /ishtar_common
parent1b47bd5efbae67bfb64c2c70143c856f856d186b (diff)
downloadIshtar-01a74292ba7a2bf6f62b924f686a3531a26b30e9.tar.bz2
Ishtar-01a74292ba7a2bf6f62b924f686a3531a26b30e9.zip
🐛 import error check: fix error when ID is higher than 1000 (refs #5931)
Diffstat (limited to 'ishtar_common')
-rw-r--r--ishtar_common/templates/ishtar/blocks/view_import_csv.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/templates/ishtar/blocks/view_import_csv.html b/ishtar_common/templates/ishtar/blocks/view_import_csv.html
index ba9f43d50..e8dd5e093 100644
--- a/ishtar_common/templates/ishtar/blocks/view_import_csv.html
+++ b/ishtar_common/templates/ishtar/blocks/view_import_csv.html
@@ -25,7 +25,7 @@
<tr{% if has_line_errors and line.0.1 %} class="import-line-ignored"{% endif%}>
<td>{{ forloop.counter }}</td>
{% for cell in line %}<td>
- {% if has_line_errors and not forloop.counter0 %}<input class="check-ignored" value="{{cell.0}}"{% if cell.1%} checked="checked"{% endif %} type="checkbox" />{% else %}{{cell}}{% endif %}
+ {% if has_line_errors and not forloop.counter0 %}<input class="check-ignored" value="{{cell.0|unlocalize}}"{% if cell.1%} checked="checked"{% endif %} type="checkbox" />{% else %}{{cell}}{% endif %}
</td>{% endfor %}
</tr>{% endfor %}
</tbody>