diff options
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 |
commit | 01a74292ba7a2bf6f62b924f686a3531a26b30e9 (patch) | |
tree | ec5f9cc449a4c32da17ffe81e3eb167ad65c5dc9 /ishtar_common/templates | |
parent | 1b47bd5efbae67bfb64c2c70143c856f856d186b (diff) | |
download | Ishtar-01a74292ba7a2bf6f62b924f686a3531a26b30e9.tar.bz2 Ishtar-01a74292ba7a2bf6f62b924f686a3531a26b30e9.zip |
🐛 import error check: fix error when ID is higher than 1000 (refs #5931)
Diffstat (limited to 'ishtar_common/templates')
-rw-r--r-- | ishtar_common/templates/ishtar/blocks/view_import_csv.html | 2 |
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> |