Implement image upload

This commit is contained in:
Jannis Portmann 2021-04-30 19:22:50 +02:00
parent 14d242f173
commit faee4ca8ab
3 changed files with 29 additions and 1 deletions

View file

@ -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 %}