Files
mkspc-mgmt/app/base/templates/forms/widgets/textarea.html
2025-07-20 14:17:15 +02:00

4 lines
211 B
HTML

{% 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>