diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-12-18 18:56:31 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-04-16 16:38:33 +0200 |
commit | 56c5f6e31f34e47d9a6c31767840c9d949d63abf (patch) | |
tree | c293968531fba747a39d464ac6b571dc39d99b2e /archaeological_warehouse/models.py | |
parent | ef878c317f8aa33b5fdd92417a12e1385454e86e (diff) | |
download | Ishtar-56c5f6e31f34e47d9a6c31767840c9d949d63abf.tar.bz2 Ishtar-56c5f6e31f34e47d9a6c31767840c9d949d63abf.zip |
✨ imports: add search criteria
Diffstat (limited to 'archaeological_warehouse/models.py')
-rw-r--r-- | archaeological_warehouse/models.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/archaeological_warehouse/models.py b/archaeological_warehouse/models.py index 08d3e7d8d..e04643c87 100644 --- a/archaeological_warehouse/models.py +++ b/archaeological_warehouse/models.py @@ -35,7 +35,7 @@ from ishtar_common.utils import ugettext_lazy as _, pgettext_lazy from django.apps import apps from ishtar_common.data_importer import post_importer_action, pre_importer_action, ImporterError from ishtar_common.model_managers import ExternalIdManager, UUIDModelManager -from ishtar_common.models import ValueGetter, get_current_profile, HistoryModel +from ishtar_common.models import ValueGetter, get_current_profile, HistoryModel, Imported from ishtar_common.models_common import ( GeneralType, BaseHistorizedItem, @@ -1070,6 +1070,7 @@ class Container( ALT_NAMES.update(BaseHistorizedItem.ALT_NAMES) ALT_NAMES.update(DocumentItem.ALT_NAMES) + ALT_NAMES.update(Imported.ALT_NAMES) """ # kept as an example |