summaryrefslogtreecommitdiff
path: root/ishtar_common/models_imports.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/models_imports.py')
-rw-r--r--ishtar_common/models_imports.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/ishtar_common/models_imports.py b/ishtar_common/models_imports.py
index 1723fc5bf..6c60051fc 100644
--- a/ishtar_common/models_imports.py
+++ b/ishtar_common/models_imports.py
@@ -202,6 +202,12 @@ class ImporterType(models.Model):
pre_import_message = models.TextField(
_("Pre-import form message"), blank=True, default="", max_length=500
)
+ ignore_errors = models.TextField(
+ verbose_name=_("Error messages to ignore"), blank=True, null=True,
+ help_text=_("If an error is encountered with the following character strings, the error is not reported in "
+ "the error file. Each message is separated with a line break.")
+ )
+
objects = SlugModelManager()
SERIALIZATION_EXCLUDE = ["users"]