I want to be able to put certain configuration information in my settings.py file - things like the site name, site url, etc.
If I do this, how can I then access those settings in templates?
Thanks
|
I want to be able to put certain configuration information in my settings.py file - things like the site name, site url, etc. If I do this, how can I then access those settings in templates? Thanks |
|||||
|
|
Let's say in your
If you need that in just one or two views:
If you need to access these across a lot of apps and/or views, you can write a context processor to save code: James has a tutorial on this online. Some useful information on the when and if of context processors is available on this very site here. Inside your
Back in your
In your
|
|||||||||||
|
|
If you only need a setting or two for a couple views, Context Processor may be overkill since it will add them to ALL views in your app. But if it's used in a lot of templates, Contest Processor is the way to go. For the simple one off case just pass whatever setting you need from the view to the template:
And access the setting in your template via:
|
|||
|
|
|
If using a class-based view:
|
||||
|
|