diff options
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 |
commit | 7343c9f1bbc28be270b2093dcd9e713a7bdcdb89 (patch) | |
tree | 0ed9392291c50980c7dbff14c9a05edc601076de /archaeological_finds/wizards.py | |
parent | 10b603af68689ea3b251006b7ec05855b9616811 (diff) | |
download | Ishtar-7343c9f1bbc28be270b2093dcd9e713a7bdcdb89.tar.bz2 Ishtar-7343c9f1bbc28be270b2093dcd9e713a7bdcdb89.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.py | 28 |
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'] |