I am using Flask version 0.7. I have stored the path of static content in a configuration file and loaded it using

app.config.from_envvar(<file_name>)

Can I be able to access this config variable in the template without passing the variables through the view?

link|improve this question

60% accept rate
I used app.config.from_pyfile(<file_name>) to load the configuration to flask config variable. Since Flask 0.6; config, being one of the global variable, is available in Jinja2 templates by default. Then the config variables can be easily accessed as a dictionary object in the templates. – ranendra Aug 18 '11 at 12:14
feedback

1 Answer

up vote 11 down vote accepted

There are a few global variables that are passed in the templates context by default by flask (here is the complete list), one of them being config, which allows you to access the application configuration from templates.

On the other hand, if you wanted to pass arbitrary data to your templates without having to pass it explicitely in each view, you would have to use context processors.

link|improve this answer
2  
I'd just like to note that "Only values in uppercase are actually stored in the config object"; this gave me a few minutes of confusion when faced with the same question as the poster. – threecheeseopera Mar 21 at 17:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.