Maybe "with" statement can help you

{% for folder in folders %}
   {% with %}
       {% set path=get_path(folder) %}
       {% set tags=get_tags(folder) %}
       {% set basename=get_basename(folder) %}
       {{ path }}, {{ tags }}, {{ basename }}
   {% endwith %}
{% endfor %}


Where get_* are template_globals

--
Bruno Rocha
http://brunorocha.org

-- 
You received this message because you are subscribed to the Google Groups 
"pocoo-libs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/pocoo-libs.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to