diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-12-18 18:56:31 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-02-05 10:51:52 +0100 |
commit | ff02c4b717b665f3671cd8168c91a41dc06e1728 (patch) | |
tree | d5de7905864667f73939ecd45ca8c938167bd103 /archaeological_warehouse/models.py | |
parent | e5c704cbe7d3bd3e805aee3b767267539e2a963e (diff) | |
download | Ishtar-ff02c4b717b665f3671cd8168c91a41dc06e1728.tar.bz2 Ishtar-ff02c4b717b665f3671cd8168c91a41dc06e1728.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 |