{% macro textbox( field, label=None, hint=False, highlight_tags=False, autofocus=False, help_link=None, help_link_text=None, width='2-3', suffix=None, safe_error_message=False, rows=8 ) %}
{% if highlight_tags %} {% set field_class = 'form-control-{} textbox-highlight-textbox'.format(width) %} {% else %} {% set field_class = 'form-control-{} {}'.format(width, 'textbox-right-aligned' if suffix else '') %} {% endif %} {% set field_class = 'form-control ' + field_class + ( ' form-control-error' if field.errors else '' ) %} {{ field(**{ 'class': field_class, 'data-module': 'highlight-tags' if highlight_tags else '', 'rows': rows|string }) }} {% if suffix %} {{ suffix }} {% endif %} {% if help_link and help_link_text %} {% endif %}
{% endmacro %}