{% extends 'stdgrid.html.twig' %} {% import '/cards/note/view.html.twig' as noteView %} {% set nickname = nickname|escape %} {% block title %}{{ nickname }}{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock stylesheets %} {% block body %} {% if actor is defined and actor is not null %} {% block profile_view %} {% include 'cards/profile/view.html.twig' %} {% endblock profile_view %}
{% if notes is defined and notes is not empty %} {% for note in notes %} {% block current_note %} {{ noteView.macro_note(note, null) }}
{% endblock current_note %} {% endfor %} {% else %}

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

{% endif %}
{% else %}

{% trans with { '%group%': nickname } %}The group %group% doesn't exist. Would you like to create it?{% endtrans %}

{{ form(create_form) }}
{% endif %} {% endblock body %}