{# This is a hidden form that will be submitted by the button below.#}

{{ form.title.value }}

{% for error in form.title.errors %}

{{ error|escape }}

{% endfor %}

{{ form.text.value|safe }}

{% for error in form.text.errors %}

{{ error|escape }}

{% endfor %}
{# prevent button from taking full width with this div #}