Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. Reference:https://github.com/mitsuhiko/jinja2/issues/164
  2.  
  3. example:
  4.  
  5. {% set the_var = 'foo' %}
  6. {% for e in elements %}
  7. {% set the_var = 'YES' %}
  8. the var: {{ the_var }}
  9. {%- endfor %}
  10. the_var: {{ the_var }}
  11. Result:
  12.  
  13. the_var: YES
  14. the_var: YES
  15. the_var: foo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement