Use view_name instead of func
Using func does not work when using application with namespace url.
This commit is contained in:
parent
01c9651131
commit
98947a358e
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ def get_lang_data(path_info, lang_code, curr_lang):
|
|||
lang_name = get_lang_name(lang_code)
|
||||
rm = resolve(path_info)
|
||||
activate_lang(lang_code)
|
||||
lang_url = reverse(rm.func, args=rm.args, kwargs=rm.kwargs)
|
||||
lang_url = reverse(rm.view_name, current_app='npb', args=rm.args, kwargs=rm.kwargs)
|
||||
activate_lang(curr_lang)
|
||||
return (lang_code, lang_name, lang_url)
|
||||
|
||||
|
|
Loading…
Reference in a new issue