14 lines
406 B
HTML
14 lines
406 B
HTML
{% extends 'default/templates/form/field/field.html' %}
|
|
|
|
{% block field %}
|
|
<textarea
|
|
{% if not content.id is none %}
|
|
id="{{ content.id }}"
|
|
{% endif %}
|
|
{% if not content.valid %}
|
|
class="invalid"
|
|
{% endif %}
|
|
name="{{ content.name_qualified }}"
|
|
>{% if not content.value is none %}{{ content.value }}{% endif %}</textarea>
|
|
{% endblock %}
|