From 508ab37a7e709b852f0f5b1dd44e958d33ba4efa Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Mon, 13 Jul 2020 23:07:43 +0200 Subject: [PATCH 4/4] manager: replace None values with a marker (#44805) --- .../templates/authentic2/manager/user_import_report.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/authentic2/manager/templates/authentic2/manager/user_import_report.html b/src/authentic2/manager/templates/authentic2/manager/user_import_report.html index 7acea0bc..698533e2 100644 --- a/src/authentic2/manager/templates/authentic2/manager/user_import_report.html +++ b/src/authentic2/manager/templates/authentic2/manager/user_import_report.html @@ -111,7 +111,7 @@ {{ row.line }} {% for cell in row %} - {{ cell.value }} + {{ cell.value|default_if_none:"-" }} {% endfor %} {% firstof row.action_display "-" %} -- 2.27.0