テキスト行とラベルを表示するために使用している小さなマクロを作成しました。
{% macro input(name, text, help_text, value="", input_type) -%}
<label for="id_{{name}}">{{text}}<span class="right">{{help_text}}</span></label>
<input id="id_{{name}}" name="{{name}}" value="{{value}}" type="{{input_type}}" />
{{%- endmacro %}
問題は、jinja2マクロを呼び出すときです。
{{input("username", "Korisničko ime:", "Pomoć", {{value_username}}, "text")}
パラメータとしてinputを呼び出すと、動作させることができず{{value_username}}
、常にエラーが発生します。
{{value_username}}
パラメータとしてどのように呼び出すことができるか、解決策を知っていますか。