diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-03-10 16:55:21 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-03-10 18:23:34 +0100 |
commit | 4f2c8b7d8564d3f4bf59d437a79e86a7a81c88e2 (patch) | |
tree | 06bf4f465d02bcb5fe7a7b281fbd4b12c9c967fb /archaeological_finds | |
parent | 9b3f2e0d6523958742256840266119395af860c3 (diff) | |
download | Ishtar-4f2c8b7d8564d3f4bf59d437a79e86a7a81c88e2.tar.bz2 Ishtar-4f2c8b7d8564d3f4bf59d437a79e86a7a81c88e2.zip |
✨ sheet account: display attached items (refs #6208)
Diffstat (limited to 'archaeological_finds')
-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 |