summaryrefslogtreecommitdiff
path: root/archaeological_context_records/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_context_records/models.py')
-rw-r--r--archaeological_context_records/models.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/archaeological_context_records/models.py b/archaeological_context_records/models.py
index 9b955eafc..8631f49d1 100644
--- a/archaeological_context_records/models.py
+++ b/archaeological_context_records/models.py
@@ -28,7 +28,7 @@ from django.contrib.sites.models import Site
from django.db import transaction, OperationalError, IntegrityError
from django.db.models import Q
from django.db.models.signals import post_delete, post_save, m2m_changed
-from django.urls import reverse
+from django.urls import reverse, reverse_lazy
from ishtar_common.utils import ugettext_lazy as _, pgettext_lazy, pgettext
from django.utils.text import slugify
@@ -843,6 +843,7 @@ class ContextRecord(
"m2m_listing", "interpretation", "activity", "taq", "taq_estimated", "tpq",
"tpq_estimated"
]
+ DEFAULT_WIZARD = reverse_lazy("record_search", args=["general-record_search"])
history = HistoricalRecords(bases=[HistoryModel])
objects = UUIDModelManager()