index.html.twig 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Profil de {{username}}{% endblock %}
  3. {% block body %}
  4. Bonjour {{sessionUser}}, <a href="{{ path('disconnect') }}">Se déconnecter</a>
  5. <h1>{{ username }}</h1>
  6. {% if username != sessionUser %}
  7. {% if not follow %}
  8. <a href="/profile/{{username}}/follow">S'abonner</a>
  9. {% else %}
  10. <a href="/profile/{{username}}/unfollow">Se désabonner</a>
  11. {% endif %}
  12. {% endif %}
  13. <dl>
  14. <dt>Description :</dt>
  15. <dd>{{ description }}</dd>
  16. <dt>Ce profil est :</dt>
  17. {% if isPrivate %}
  18. <dd>Privé</dd>
  19. {% else %}
  20. <dd>Public</dd>
  21. {% endif %}
  22. </dl>
  23. <h2>Messages :</h2>
  24. {% if not privateNotAllowed %}
  25. {# <ul>
  26. {% for message in messages %}
  27. <li>{{ message.text }}</li>
  28. {% endfor %}
  29. </ul> #}
  30. {% endif %}
  31. <h2>Ajouter un message :</h2>
  32. {# {{ form_start(form) }}
  33. {{ form_errors(form) }}
  34. {{ form_widget(form) }}
  35. <input type="submit">
  36. {{ form_end(form) }} #}
  37. {% endblock %}