1
0
mirror of https://github.com/Luzifer/cloudkeys-go.git synced 2024-09-20 08:02:57 +00:00
cloudkeys-go/vendor/github.com/flosch/pongo2/template_tests/with.tpl

16 lines
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 %}