Project

General

Profile

Bug #20234

Updated by François ARMAND over 2 years ago

Docs https://docs.rudder.io/reference/6.2/usage/variables.html#_file_content_templates_and_edition (for jinja2 paragraph) says: 

 <pre> 
 {% for key,value in vars.prefix.dict %} 
 </pre> 

 While it should be:  

 <pre> 
 {% for key,value in vars.prefix.dict.items() %} 
 </pre> 

 See jinja2 doc: https://jinja.palletsprojects.com/en/2.11.x/templates/#for

Back