I have python dict object which I am passing to the template {'bla bla': 'lalala'}
.
I want to reach this object with Jinja {{ dict_name.'bla bla' }}
or {{ dict_name.bla bla }}
or {{ dict_name['bla bla'] }}
but all this not working. What i need do?
Asked
Active
Viewed 26 times
0

Flatt ME
- 25
- 5
-
Is it solved by [this other question](https://stackoverflow.com/questions/8000022/django-template-how-to-look-up-a-dictionary-value-with-a-variable)? – josepdecid Jul 05 '21 at 10:42
-
`{{ dict_name['bla bla'] }}` should work. You can refer to this question: https://stackoverflow.com/questions/19141073/rendering-a-python-dict-in-jinja2-werkzeug – nngeek Jul 07 '21 at 15:26