Jinja2 テンプレートに渡されたすべての引数のリストを取得するにはどうすればよいですか?
非常に一般的なテンプレートがあり、渡されたすべての引数を (デバッグの理由で) リストしたい場合、それを行う方法はありますか?
何かのようなもの:
mytemplate.html
{% for argument in LIST_OF_ARGUMENT %}
{{ argument }}<br>
{% endfor %}
だからビューで/foobar
この方法でテンプレートを呼び出すと:
return render_template('mytemplate.html', form=myform, foo='bar')
私は得る
the_content_of_form <br>
bar <br>
この方法でテンプレートを呼び出すと、次のようになります。
return render_template('mytemplate.html', lorem=ipsum, fooooo='barrrrr')
私は得る
the_content_of_lorem <br>
barrrrr <br>