{% extends 'stdgrid.html.twig' %} {% block title %}{{ actor.getNickname() }}'s profile{% endblock %} {% block body %} {% block profile_view %}{% include 'cards/profile/view.html.twig' %}{% endblock profile_view %}
{% if notes is defined and notes is not empty %} {% for conversation in notes %} {% include '/note/view.html.twig' with {'note': conversation['note'], 'have_user': have_user, 'replies': conversation['replies']} only %}
{% endfor %} {% else %}

{% trans %}No notes here.{% endtrans %}

{% endif %}
{% endblock body %}