12 lines
No EOL
282 B
Twig
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 %} |