summaryrefslogtreecommitdiff
path: root/archaeological_finds/wizards.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2018-06-01 15:50:52 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2018-06-12 09:57:24 +0200
commit572b9047260322ed19cc9f674657b8be8d62c052 (patch)
tree0ed9392291c50980c7dbff14c9a05edc601076de /archaeological_finds/wizards.py
parent66a376e081e335cf94ecf6fd41e5fe13a5445c57 (diff)
downloadIshtar-572b9047260322ed19cc9f674657b8be8d62c052.tar.bz2
Ishtar-572b9047260322ed19cc9f674657b8be8d62c052.zip
Adapt forms, wizards, views, urls for new management of documents (refs #4107)
Diffstat (limited to 'archaeological_finds/wizards.py')
-rw-r--r--archaeological_finds/wizards.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/archaeological_finds/wizards.py b/archaeological_finds/wizards.py
index b244118cd..b15948dce 100644
--- a/archaeological_finds/wizards.py
+++ b/archaeological_finds/wizards.py
@@ -218,31 +218,3 @@ class TreatmentFileEditAdministrativeActWizard(
def get_associated_item(self, dct):
return self.get_current_object().treatment_file
-
-
-class FindSourceWizard(SourceWizard):
- wizard_done_window = reverse_lazy('show-findsource')
- model = models.FindSource
-
-
-class FindSourceDeletionWizard(DeletionWizard):
- model = models.FindSource
- fields = ['item', 'title', 'source_type', 'authors', ]
-
-
-class TreatmentSourceWizard(SourceWizard):
- model = models.TreatmentSource
-
-
-class TreatmentSourceDeletionWizard(DeletionWizard):
- model = models.TreatmentSource
- fields = ['treatment', 'title', 'source_type', 'authors']
-
-
-class TreatmentFileSourceWizard(SourceWizard):
- model = models.TreatmentFileSource
-
-
-class TreatmentFileSourceDeletionWizard(DeletionWizard):
- model = models.TreatmentFileSource
- fields = ['treatment_file', 'title', 'source_type', 'authors']