diff options
Diffstat (limited to 'ishtar_common/models_common.py')
-rw-r--r-- | ishtar_common/models_common.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ishtar_common/models_common.py b/ishtar_common/models_common.py index 9a595df84..9c081a022 100644 --- a/ishtar_common/models_common.py +++ b/ishtar_common/models_common.py @@ -1122,12 +1122,14 @@ class SearchAltName(object): class Imported(models.Model): imports = models.ManyToManyField( - Import, blank=True, related_name="imported_%(app_label)s_%(class)s" + Import, blank=True, related_name="imported_%(app_label)s_%(class)s", + verbose_name=_("Created by imports") ) timestamp_geo = models.IntegerField(_("Timestamp geo"), null=True, blank=True) timestamp_label = models.IntegerField(_("Timestamp label"), null=True, blank=True) imports_updated = models.ManyToManyField( - Import, blank=True, related_name="import_updated_%(app_label)s_%(class)s" + Import, blank=True, related_name="import_updated_%(app_label)s_%(class)s", + verbose_name=_("Updated by imports") ) ALT_NAMES = { |