{% extends 'base.html.twig' %} {% block title %}{{companyName}} | {% trans %}Announce{% endtrans %}{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %} {{ parent() }}
{% if current_announce!="all" and current_announce is not null%}
{{ announces|length }} dernières annonces
{% if current_announce!="all" %}
{% if local == "fr" %}

{{ current_announce.titleFr }}

{% else %}

{{ current_announce.titleEn }}

{% endif %}
    {% if current_announce.cover is not null %}
  • {% endif %} {% if current_announce.picture is not null %}
  • {% endif %}

{{ current_announce.description }}

  • Ville: {{ current_announce.address.town }}
  • Quartier: {{ current_announce.address.location }}
  • Superficie: {{ current_announce.area }}m²
  • Pièces: {{ current_announce.numberOfPiece }}
{{ current_announce.amount|number_format(2, '.', ',') }}
{% else %}
{% for announce in announces %}
{{ announce.titleEn }}

{{ announce.description }}

En Savoir plus..
{{ announce.amount|number_format(2, '.', ',') }}
{%endfor %}
{% endif %}
{% if announces|length >1 %}
Autres Offres
Promotions, deals and special offers for you
{% for announce in announces %} {% if current_announce != announce %}
{{ announce.titleEn }}

{{ announce.description }}

En Savoir plus..
{{ announce.amount|number_format(2, '.', ',') }}
{%endif %} {%endfor %}
{%endif %}
{% elseif current_announce =="all" %}
Dernières annonces
Promotions, deals and special offers for you
{% for announce in announces %} {% if current_announce != announce %}
{{ announce.titleEn }}

{{ announce.description }}

En Savoir plus..
{{ announce.amount|number_format(2, '.', ',') }}
{%endif %} {%endfor %}
{% else %} {% endif %}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}