2024-04-22 21:29:28 +00:00
|
|
|
{% extends 'default/templates/form/field/field.html' %}
|
2024-04-12 19:22:00 +00:00
|
|
|
|
|
|
|
{% block field %}
|
|
|
|
<textarea
|
|
|
|
{% if not content.id is none %}
|
|
|
|
id="{{ content.id }}"
|
|
|
|
{% endif %}
|
|
|
|
{% if not content.valid %}
|
|
|
|
class="invalid"
|
|
|
|
{% endif %}
|
2024-04-17 17:30:52 +00:00
|
|
|
name="{{ content.name_qualified }}"
|
2024-04-12 19:22:00 +00:00
|
|
|
>{% if not content.value is none %}{{ content.value }}{% endif %}</textarea>
|
2024-04-12 19:22:00 +00:00
|
|
|
{% endblock %}
|