{%- import 'util/macros.html' as macros with context -%} {% macro toggle_section(title, id, name, flag, below_text, disabled) %}
{% if below_text %} {{below_text|safe}} {% endif %}
{% endmacro %} {% macro color_section(id, form_action, form_name, section_title, current_color) %}
{% for themecolor in COLORS %} {% endfor %}

Or type a color hex code:

{% endmacro %} {% macro line_text_section(id, form_action, form_name, section_title, contents, below_text, placeholder_text, button_text, show_emojis, minlength, maxlength, pattern, disabled) %}
{% if show_emojis %} {{macros.emoji_btn(id ~ '-body')}} {% endif %} {{below_text}}
{% endmacro %} {% macro text_area_section(id, form_action, form_name, section_title, contents, below_text, placeholder_text, show_extras, maxlength) %}
{% if show_extras %}
{{macros.emoji_btn(id ~ '-text')}} {{macros.gif_btn(id ~ '-text')}} {{macros.file_btn('file-upload-common-' ~ id)}}
{% endif %}
{{below_text}}
{% endmacro %}