diff options
Diffstat (limited to 'ishtar_common/wizards.py')
-rw-r--r-- | ishtar_common/wizards.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ishtar_common/wizards.py b/ishtar_common/wizards.py index 740a1c18d..0d23bdcb4 100644 --- a/ishtar_common/wizards.py +++ b/ishtar_common/wizards.py @@ -1678,6 +1678,7 @@ class SearchWizard(IshtarWizard): label = "" modification = None # True when the wizard modify an item storage_name = "formtools.wizard.storage.session.SessionStorage" + template_name = "ishtar/wizard/search.html" def get_wizard_name(self): """ @@ -1692,8 +1693,7 @@ class SearchWizard(IshtarWizard): ) def get_template_names(self): - templates = ["ishtar/wizard/search.html"] - return templates + return [self.template_name] def get_label(self): return self.label |