mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-25 17:33:08 +01:00
Fix the login url by using view names in the demo settings instead of the hardcoded urls.
Also remove a duplicate url for 'login'
This commit is contained in:
parent
63790c5b1d
commit
cdfc895bce
@ -108,8 +108,8 @@ HELPDESK_SHOW_CHANGE_PASSWORD = True
|
|||||||
# Instead of showing the public web portal first,
|
# Instead of showing the public web portal first,
|
||||||
# we can instead redirect users straight to the login page.
|
# we can instead redirect users straight to the login page.
|
||||||
HELPDESK_REDIRECT_TO_LOGIN_BY_DEFAULT = False
|
HELPDESK_REDIRECT_TO_LOGIN_BY_DEFAULT = False
|
||||||
LOGIN_URL = '/login/'
|
LOGIN_URL = 'helpdesk:login'
|
||||||
LOGIN_REDIRECT_URL = '/login/'
|
LOGIN_REDIRECT_URL = 'helpdesk:home'
|
||||||
|
|
||||||
# Database
|
# Database
|
||||||
# - by default, we use SQLite3 for the demo, but you can also
|
# - by default, we use SQLite3 for the demo, but you can also
|
||||||
|
@ -216,10 +216,6 @@ urlpatterns += [
|
|||||||
login.login,
|
login.login,
|
||||||
name='login'),
|
name='login'),
|
||||||
|
|
||||||
url(r'^accounts/login/$',
|
|
||||||
login.login,
|
|
||||||
name='login'),
|
|
||||||
|
|
||||||
url(r'^logout/$',
|
url(r'^logout/$',
|
||||||
auth_views.LogoutView.as_view(
|
auth_views.LogoutView.as_view(
|
||||||
template_name='helpdesk/registration/login.html',
|
template_name='helpdesk/registration/login.html',
|
||||||
|
Loading…
Reference in New Issue
Block a user