{% macro field(name, value='', type='text') %}
{% endmacro %} {% macro label(text) %}
{% endmacro %} {%macro radio(setting, label, name, value= '', options={},html='')%}
{%for k,v in options%} {%endfor%}
this.config('ext.{{setting.ext}}.{{name}}') {%if html%} {{html|safe}} {%endif%}
{% endmacro %} {%macro text(setting, label, name, value= '',html= '')%}
this.config('ext.{{setting.ext}}.{{name}}') {%if html%} {{html|safe}} {%endif%}
{% endmacro %} {%macro pass(setting, label, name, value= '',html= '')%}
this.config('ext.{{setting.ext}}.{{name}}') {%if html%} {{html|safe}} {%endif%}
{% endmacro %} {%macro select(setting, label, name, value= '', options={},html= '')%}
this.config('ext.{{setting.ext}}.{{name}}') {%if html%} {{html|safe}} {%endif%}
{% endmacro %} {%macro textarea(setting, label, name, value= '' ,html= '')%}
this.config('ext.{{setting.ext}}.{{name}}') {%if html%} {{html|safe}} {%endif%}
{% endmacro %}