You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
429 B
20 lines
429 B
{% extends 'base.html.twig' %} |
|
|
|
{% form_theme form _self %} |
|
|
|
{% block quill_widget %} |
|
<div {{ stimulus_controller('quill') }} class="quill" data-id="{{ id }}" > |
|
<div id="editor"> |
|
{{ value|raw }} |
|
</div> |
|
</div> |
|
<input type="hidden" {{ block('widget_attributes') }} value="{{ value }}" /> |
|
{% endblock %} |
|
|
|
|
|
{% block body %} |
|
|
|
{{ form_start(form) }} |
|
{{ form_end(form) }} |
|
|
|
{% endblock %}
|
|
|