{% extends 'base.html.twig' %} {% block body %}

{{ offer.title }}

Generic placeholder image

Description

{{ offer.description }}

From

{{ offer.byUser }} in {{ offer.zipCode }}

Wishes

{{ offer.byUser }} would like some of the following in return:

{% if wishes == [] %} {% else %}
    {% for wish in wishes %}
  • {{ wish.title }}
  • {% endfor %}
{% endif %}
{% endblock %}