diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-09-06 10:16:18 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-09-06 10:16:18 +0200 |
commit | d4f64fb7befba3d24a08a4a06a56bb0d7e36cf5e (patch) | |
tree | f601eafbbf07ea194d6c9136da9322c29735769a /ishtar_common/views.py | |
parent | e80cc7dca251b644d78a58acfa9e677a011b78d9 (diff) | |
download | Ishtar-d4f64fb7befba3d24a08a4a06a56bb0d7e36cf5e.tar.bz2 Ishtar-d4f64fb7befba3d24a08a4a06a56bb0d7e36cf5e.zip |
Person searc: fix the wizard (refs #4227)
Diffstat (limited to 'ishtar_common/views.py')
-rw-r--r-- | ishtar_common/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/views.py b/ishtar_common/views.py index afc928147..b59c4c8e4 100644 --- a/ishtar_common/views.py +++ b/ishtar_common/views.py @@ -101,7 +101,7 @@ def index(request): logout(request) return render(request, 'index.html', dct) -person_search_wizard = wizards.PersonWizard.as_view( +person_search_wizard = wizards.PersonSearch.as_view( [('general-person_search', forms.PersonFormSelection)], label=_(u"Person search"), url_name='person_search',) |