From 01a74292ba7a2bf6f62b924f686a3531a26b30e9 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 9 May 2024 13:08:57 +0200 Subject: 🐛 import error check: fix error when ID is higher than 1000 (refs #5931) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ishtar_common/templates/ishtar/blocks/view_import_csv.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ishtar_common/templates') 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 @@ {{ forloop.counter }} {% for cell in line %} - {% if has_line_errors and not forloop.counter0 %}{% else %}{{cell}}{% endif %} + {% if has_line_errors and not forloop.counter0 %}{% else %}{{cell}}{% endif %} {% endfor %} {% endfor %} -- cgit v1.2.3