diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-09-19 15:42:03 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-09-20 15:47:14 +0200 |
commit | 80f8712a5d25a4b2c7c186b8f260561ea35441c1 (patch) | |
tree | ce095cf8640f1d025dc7c89f2c0dd4c0ecda2370 /archaeological_operations/views.py | |
parent | 9e7b90546562144abc2c7195743ec34507f57cc2 (diff) | |
download | Ishtar-80f8712a5d25a4b2c7c186b8f260561ea35441c1.tar.bz2 Ishtar-80f8712a5d25a4b2c7c186b8f260561ea35441c1.zip |
✨ archaeological sites edit form: add new fields, simplify forms
Diffstat (limited to 'archaeological_operations/views.py')
-rw-r--r-- | archaeological_operations/views.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/archaeological_operations/views.py b/archaeological_operations/views.py index 93fb1864b..70732d04e 100644 --- a/archaeological_operations/views.py +++ b/archaeological_operations/views.py @@ -645,7 +645,6 @@ site_search_wizard = wizards.SiteSearch.as_view( site_creation_steps = [ ("general-site_creation", forms.SiteForm), - ("towns-site_creation", forms.SiteTownFormset), ("underwater-site_creation", forms.SiteUnderwaterForm), ("final-site_creation", FinalForm), ] @@ -659,7 +658,6 @@ site_creation_wizard = wizards.SiteWizard.as_view( site_modification_steps = [ ("selec-site_modification", forms.SiteFormSelection), ("general-site_modification", forms.SiteForm), - ("towns-site_modification", forms.SiteTownFormset), ("underwater-site_modification", forms.SiteUnderwaterForm), ("final-site_modification", FinalForm), ] |