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 | a82ae23015f8036919bae3c4a4e133e9045e6fcc (patch) | |
tree | 38ca8553def343f8aede7af10253286476c7eb24 /archaeological_operations/wizards.py | |
parent | af719ae697e5b03582b28f8a59eae39524cb8f7f (diff) | |
download | Ishtar-a82ae23015f8036919bae3c4a4e133e9045e6fcc.tar.bz2 Ishtar-a82ae23015f8036919bae3c4a4e133e9045e6fcc.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): |