{#
This template defines a data_editor macro that is selected within content.py based on the item's content type.
It will be passed to the modify.html template.
A textarea is used to edit all text-like item types with the exception of html items.
If the number of textarea rows is 0 (as defined by user settings or site default),
then the textarea number of rows will be automatically increased/decreased to fit the
current item contents by a JS autosize function subject to CSS min-height rules.
If the number of textarea rows in greater than 0, then the textarea rows attribute is set to that
value and textarea scroll bars will be used as needed.
#}
{% from "modify_binary.html" import data_editor as base_editor %}
{% macro data_editor(form, item_name) %}
{% set textarea_rows = '1' if edit_rows == '0' else edit_rows %}
{% set cls = 'moin-edit-content moin-autosize' if edit_rows == '0' else 'moin-edit-content' %}
{{ gen.textarea(form['data_text'], rows=textarea_rows|string, class=cls, **kwargs) }}
{{ base_editor(form) }}
{% endmacro %}