summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/template/templates/72615-macro.j2
blob: 328c271cd50d690d7a86c4aa004ae72c37778674 (plain)
1
2
3
4
5
6
7
8
{% macro print_context_vars(value) %}
{{ foo }}
{{ value }}
{% set foo = "template-nested-level-foo" %}
{% set bar = "template-nested-level-bar" %}
{% from '72615-macro-nested.j2' import print_context_vars_nested with context %}
{{ print_context_vars_nested(bar) }}
{% endmacro %}