pflaenz.li-Symfony/templates/app/new_listing.html.twig
2021-04-30 19:23:01 +02:00

12 lines
No EOL
282 B
Twig

{% extends 'base.html.twig' %}
{% block body %}
{% for message in app.flashes('error') %}
<div class="alert alert-error" role="alert">
{{ message }}
</div>
{% endfor %}
<h1 class="mb-3">Add new offering</h1>
{{ form(offering_form) }}
{% endblock %}