diff options
Diffstat (limited to 'ishtar_common/models_imports.py')
| -rw-r--r-- | ishtar_common/models_imports.py | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/ishtar_common/models_imports.py b/ishtar_common/models_imports.py index b61d591b1..6358f070a 100644 --- a/ishtar_common/models_imports.py +++ b/ishtar_common/models_imports.py @@ -179,7 +179,10 @@ class ImporterType(models.Model):      )      is_template = models.BooleanField(_("Can be exported"), default=False)      unicity_keys = models.CharField( -        _('Unicity keys (separator ";")'), blank=True, null=True, max_length=500 +        _('Unicity keys (separator ";")'), blank=True, null=True, max_length=500, +        help_text=_("Mandatory for update importer. Set to key that identify items " +                    "without ambiguity. Warning: __ is not supported, only use level " +                    "1 key.")      )      available = models.BooleanField(_("Available"), default=True)      objects = ImporterTypeManager() | 
