{% extends 'base.html.twig' %} {% block title %}Messagerie {% endblock %} {% block body %} {% block stylesheets %} {% endblock %}
{% if userLocataire.image is null %} {% else %} avatar {% endif %}
{{userLocataire.nom}}{{userLocataire.prenom}}
    {% for conversation in conversations %} {% if userLocataire.uid == conversation.recipient.uid %}
  • {{conversation.createdAt ? conversation.createdAt|date('Y-m-d H:i') : ''}}
    {{conversation.content|raw}}
  • {% else %}
  • {{conversation.createdAt ? conversation.createdAt|date('Y-m-d H:i') : ''}}
    {{conversation.content|raw}}
  • {% endif %} {% endfor %}
{{ form_start(form, {'attr': {'action': path('send', {'uid': userLocataire.uid})}}) }}
{{ form_widget(form.content, {'attr': {'class': 'form-control', 'placeholder': 'Enter text here...'}}) }} {# #} {{ form_end(form) }}
{% endblock %} {% block javascripts %} {% endblock %}