summaryrefslogtreecommitdiff
path: root/archaeological_finds/wizards.py
diff options
context:
space:
mode:
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']