diff options
Diffstat (limited to 'archaeological_finds/models_finds.py')
-rw-r--r-- | archaeological_finds/models_finds.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index f49685199..08cf4f4d2 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -28,7 +28,7 @@ from django.contrib.postgres.indexes import GinIndex from django.db.models import Max, Q, F from django.db.models.signals import m2m_changed, post_save, post_delete, pre_delete from django.core.exceptions import ObjectDoesNotExist -from django.urls import reverse +from django.urls import reverse, reverse_lazy from ishtar_common.data_importer import post_importer_action, ImporterError from ishtar_common.utils import ( @@ -2059,6 +2059,7 @@ class Find( SHEET_ALTERNATIVES = [("museum", "museum_find")] SHEET_EMPTY_KEYS = ["container_ref", "upstream_treatment", "downstream_treatment", "documents_count", "m2m_listing"] + DEFAULT_WIZARD = reverse_lazy("find_search", args=["generalwarehouse-find_search"]) objects = UUIDModelManager() # fields |