13 lines
243 B
Twig
13 lines
243 B
Twig
|
{% extends 'partials/base.html.twig' %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
{{ content }}
|
||
|
|
||
|
<div class="alert">{{ form.message }}</div>
|
||
|
<p>Here is the summary of what you wrote to us:</p>
|
||
|
|
||
|
{% include "forms/data.html.twig" %}
|
||
|
|
||
|
{% endblock %}
|