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 urls, and instead use reverse url mapping? At the moment this is really the only place where I find myself writing the same urls in multiple places.
|
2
|
|
|||
|
|
In urls.py, import settings:
Then add the url pattern
Note that you need to slice In the shell:
|
||||
|

settings.pyis loaded before the URL module. Interested to find out though. Great question. – Dominic Rodger Oct 5 at 5:43