diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-10-21 22:49:56 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-10-21 22:49:56 +0200 |
commit | 39e0c9cf302f8b468e116047eef18f42d712166e (patch) | |
tree | 38ca8553def343f8aede7af10253286476c7eb24 /archaeological_operations/wizards.py | |
parent | 4e2c3dcd9dc31221a467a5bb4e727fd06336ea07 (diff) | |
download | Ishtar-39e0c9cf302f8b468e116047eef18f42d712166e.tar.bz2 Ishtar-39e0c9cf302f8b468e116047eef18f42d712166e.zip |
Djangoization - Major refactoring (step 14)
* Fix formset UI.
* Fix formset towns.
* Clean-up
Diffstat (limited to 'archaeological_operations/wizards.py')
-rw-r--r-- | archaeological_operations/wizards.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/archaeological_operations/wizards.py b/archaeological_operations/wizards.py index 66469b5b7..3281a5723 100644 --- a/archaeological_operations/wizards.py +++ b/archaeological_operations/wizards.py @@ -36,9 +36,7 @@ class OperationWizard(Wizard): templates = super(OperationWizard, self).get_template_names() current_step = self.steps. current if current_step.startswith('towns-'): - # vérifier que le context_data est bien chargé - #templates = ['ishtar/wizard/towns_wizard.html'] + templates - templates = ['ishtar/wizar/towns_wizard.html'] + templates + templates = ['ishtar/wizard/towns_wizard.html'] + templates return templates def get_context_data(self, form, **kwargs): |