1
Jinja2 can’t iterate over your details
because it is not actually a dict, it’s a string. You need to deserialize the string so you can iterate over the individual key/value pairs.
Source:stackexchange.com
1
Jinja2 can’t iterate over your details
because it is not actually a dict, it’s a string. You need to deserialize the string so you can iterate over the individual key/value pairs.