{% set actor_nickname = actor.getNickname() %} {% set actor_avatar = actor.getAvatarUrl() %} {% set actor_tags = actor.getSelfTags() %} {% set actor_bio = actor.getBio() %} {% block profile_view %}
{{ actor_nickname }}{{ '\'s avatar.' | trans }} {{ actor_nickname }}
{% if actor_bio %}

{{ actor_bio }}

{% else %}

{{ '(No bio)' | trans }}

{% endif %}
{{ 'Subscriptions' | trans }}{{ actor.getSubscriptionsCount() }}
{{ 'Subscribers' | trans }}{{ actor.getSubscribersCount() }}
{% for block in handle_event('AppendCardProfile', {'actor': actor}) %} {{ block | raw }} {% endfor %}

{% endblock profile_view %}