summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2016-09-08 10:58:59 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2016-09-08 10:58:59 +0200
commite898382eda19d6abe3c056dbbc224a9cbcdbaee7 (patch)
tree220ae194649ef983a13cc8f8b18677d186a39526
parent7b6cd70e2b9b8041225b6317fcb0456422cb71a7 (diff)
downloadIshtar-e898382eda19d6abe3c056dbbc224a9cbcdbaee7.tar.bz2
Ishtar-e898382eda19d6abe3c056dbbc224a9cbcdbaee7.zip
Source: display sheet after creation / modification (refs #3189)
-rw-r--r--archaeological_context_records/wizards.py1
-rw-r--r--archaeological_finds/wizards.py1
-rw-r--r--archaeological_operations/wizards.py1
3 files changed, 3 insertions, 0 deletions
diff --git a/archaeological_context_records/wizards.py b/archaeological_context_records/wizards.py
index 2780acfbc..0d877929f 100644
--- a/archaeological_context_records/wizards.py
+++ b/archaeological_context_records/wizards.py
@@ -146,6 +146,7 @@ class RecordDeletionWizard(DeletionWizard):
class RecordSourceWizard(SourceWizard):
model = models.ContextRecordSource
+ wizard_done_window = reverse_lazy('show-contextrecordsource')
class RecordSourceDeletionWizard(DeletionWizard):
diff --git a/archaeological_finds/wizards.py b/archaeological_finds/wizards.py
index 7ae6d0d0c..f897969c4 100644
--- a/archaeological_finds/wizards.py
+++ b/archaeological_finds/wizards.py
@@ -95,6 +95,7 @@ class TreatmentWizard(Wizard):
class FindSourceWizard(SourceWizard):
+ wizard_done_window = reverse_lazy('show-findsource')
model = models.FindSource
diff --git a/archaeological_operations/wizards.py b/archaeological_operations/wizards.py
index ee8acd9c1..572a25ca0 100644
--- a/archaeological_operations/wizards.py
+++ b/archaeological_operations/wizards.py
@@ -287,6 +287,7 @@ class OperationDeletionWizard(DeletionWizard):
class OperationSourceWizard(SourceWizard):
model = models.OperationSource
+ wizard_done_window = reverse_lazy('show-operationsource')
def get_form_initial(self, step, data=None):
initial = super(OperationSourceWizard, self).get_form_initial(step)