{% extends 'base.html.twig' %} {% block title %}My offers{% endblock %} {% block body %} {% for message in app.flashes('success') %} {% endfor %}

Offers

{% if offers|length > 0 %}
{% for offer in offers %}
{% if offer.photoFilename %} {% endif %}
{{ offer.title }}

{{ offer.description }}

{% endfor %}
{% else %} {% endif %} {% endblock %}