Implement image upload
This commit is contained in:
parent
14d242f173
commit
faee4ca8ab
3 changed files with 29 additions and 1 deletions
|
@ -1,6 +1,12 @@
|
|||
{% 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 %}
|
Reference in a new issue