I have some stuff in settings.py that I'd like to be able to access from a template, but I can't figure out how to do it. I already tried
{{CONSTANT_NAME}}
but that doesn't seem to work. Is this possible?
|
3
|
I have some stuff in settings.py that I'd like to be able to access from a template, but I can't figure out how to do it. I already tried
but that doesn't seem to work. Is this possible?
|
||
|
|
|
|
Django provides access to certain, frequently-used settings constants to the template such as
These views will both have several frequently used settings like If you're looking for access to other constants in the settings, then simply unpack the constants you want and add them to the context dictionary you're using in your view function, like so:
Now you can access |
||||
|
|
|
If it's a value you'd like to have for every request & template, using a context processor is more appropriate. Here's how: 1) Make a context_processors.py file in your app directory. Let's say I want to have the amin_media_prefix value in every context:
2) add your context processor to your settings.py file:
3) Use RequestContext in your view to add your context processors in your template:
4) and finally, in your template:
|
|||
|
|
|
To use a variable in a template, you must pass it in a dictionary when rendering the template. So you can use the constant if you pass it via the dictionary given to the template. |
||
|
|
|
|
It's certainly possible if you make it possible. You can push anything you want into the template's namespace. I don't believe the values in settings.py are automatically available to a template, however. |
||
|
|