diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-04-12 16:13:58 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-04-16 16:43:03 +0200 |
commit | 3a090fb19cf9877a122c4918cb8d9244a2f6cf26 (patch) | |
tree | 632f1270d689d63986f18d44aa72aa5934828363 /ishtar_common/models_common.py | |
parent | 7a0095af4b5adede6716f18e1053f8366cf1df65 (diff) | |
download | Ishtar-3a090fb19cf9877a122c4918cb8d9244a2f6cf26.tar.bz2 Ishtar-3a090fb19cf9877a122c4918cb8d9244a2f6cf26.zip |
📝 documentation: update generated technical documentation
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 = { |