In python i am passing below context in django template:
{'expr': 'next_expr', 'next_expr': 'value'}
In template, i am trying to print 'value':
{{ {{ expr }} }}
I know above expression wont work but i want to achieve something like this:
{{ {{ expr }} }} ---> {{ next_expr }} ---> 'value'
Is there any method in django inbuilt by which i get 'value'?
Thanks!