A few of the options in the django settings file are urls, for example LOGIN_URL
and LOGIN_REDIRECT_URL
. Is it possible to avoid hardcoding these url
As of Django 1.5, LOGIN_URL
and LOGIN_REDIRECT_URL
accept named URL patterns. That means you don't need to hardcode any urls in your settings.
LOGIN_URL = 'login' # name of url pattern
For Django 1.5 - 1.9, you can also use the view function name, but this is not recommended because it is deprecated in Django 1.8 and won't work in Django 1.10+.
LOGIN_URL = 'django.contrib.auth.views.login' # path to view function
For Django 1.4, you can could use reverse_lazy
LOGIN_URL = reverse_lazy('login')
This is the original answer, which worked before reverse_lazy
was added to Django
In urls.py, import settings:
from django.conf import settings
Then add the url pattern
urlpatterns=('',
...
url('^%s$' %settings.LOGIN_URL[1:], 'django.contrib.auth.views.login',
name="login")
...
)
Note that you need to slice LOGIN_URL
to remove the leading forward slash.
In the shell:
>>>from django.core.urlresolvers import reverse
>>>reverse('login')
'/accounts/login/'
In django development version reverse_lazy() becomes an option: https://docs.djangoproject.com/en/dev/ref/urlresolvers/#reverse-lazy