1
0
Fork 0
mirror of https://github.com/Luzifer/nginx-sso.git synced 2024-10-18 15:44:21 +00:00
nginx-sso/vendor/github.com/flosch/pongo2/template_tests/with.tpl
Knut Ahlers 9a467952cc
Vendor dependencies
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-01-28 15:56:30 +01:00

16 lines
No EOL
985 B
Smarty

new style
Start '{% with what_am_i=simple.name %}I'm {{what_am_i}}{% endwith %}' End
Start '{% with what_am_i=simple.name %}I'm {{what_am_i}}11{% endwith %}' End
Start '{% with number=7 what_am_i="guest" %}I'm {{what_am_i}}{{number}}{% endwith %}' End
Start '{% include "with.helper" with what_am_i=simple.name number=10 %}' End
old style - still supported by Django
Start '{% with simple.name as what_am_i %}I'm {{what_am_i}}{% endwith %}' End
Start '{% with simple.name as what_am_i %}I'm {{what_am_i}}11{% endwith %}' End
Start '{% with 7 as number "guest" as what_am_i %}I'm {{what_am_i}}{{number}}{% endwith %}' End
Start '{% include "with.helper" with what_am_i=simple.name number=10 %}' End
more with tests
{% with first_comment=complex.comments|first %}{{ first_comment.Author }}{% endwith %}
{% with first_comment=complex.comments|first %}{{ first_comment.Author.Name }}{% endwith %}
{% with first_comment=complex.comments|last %}{{ first_comment.Author.Name }}{% endwith %}