Files
mkspc-mgmt/app/base/templates/forms/widgets/textarea.html
2023-05-29 17:41:48 +02:00

4 lines
211 B
HTML
Executable File

{% load utils %}
<textarea name="{{ widget.name }}" rows="{{widget.value|count_lines|min:4|max:10}}"{% include "django/forms/widgets/attrs.html" %}>
{% if widget.value %}{{ widget.value }}{% endif %}</textarea>