{% extends "MuzichHomeBundle::layout.html.twig" %} {% block title %}{{ viewed_user.name }}{% endblock %} {% block mainbox_classes %}mainbox_nopadding{% endblock %} {% block content %}
{% if app.user %} {% if app.user.id != viewed_user.id %} {% endif %} {% endif %} {{ 'user.view_favorites'|trans({}, 'users') }} {{ 'user.view_playlists'|trans({}, 'users') }}

{{ 'user.show.title'|trans({'%name%' : viewed_user.name}, 'users') }}

{% if app.user %} {% if app.user.id == viewed_user.id %} {% include 'MuzichCoreBundle:Component:element_add_box.html.twig' %} {% endif %} {% endif %}
{% if viewed_user.avatar_path %} avatar {% else %} default_avatar {% endif %} {{ 'user.reputation.name'|trans({}, 'users') }}: {{ viewed_user.reputation|format_score }} {{ 'user.reputation.txt'|trans({}, 'users') }}

{% if count_owned != 0 %} {{ 'show.user.elements.count'|trans({ '%count_owned%' : count_owned, '%count_favorited%': count_favorited, '%count_favorited_users%': count_favorited_users }, 'elements') }} {% else %} {{ 'show.user.elements.no_count'|trans({}, 'elements') }} {% endif %}
{% if count_followers > 1 %} {{ 'show.user.followers.x_count'|trans({'%count%':count_followers, '%name%':viewed_user.name }, 'elements') }} {% elseif count_followers == 0 %} {{ 'show.user.followers.zero_count'|trans({'%name%':viewed_user.name }, 'elements') }} {% else %} {{ 'show.user.followers.one_count'|trans({'%count%':count_followers, '%name%':viewed_user.name }, 'elements') }} {% endif %}

{% include "MuzichCoreBundle:Tag:tagsList.show.html.twig" with { 'object_id' : viewed_user.id, 'object_type' : 'user' } %}
{% include "MuzichCoreBundle:SearchElement:default.html.twig" with { 'display_autoplay' : true, 'autoplay_shuffle' : 'elements_get_filter_data_autoplay_show', 'autoplay_shuffle_show_type': 'user', 'autoplay_context' : 'show_user' } %} {% if more_count is defined %} {% if elements|length %} {% include "MuzichCoreBundle:SearchElement:more_button.html.twig" with { 'more_path' : path('show_elements_get', { 'type' : 'user', 'object_id' : viewed_user.id, 'tags_ids_json' : '[]' }), 'more_url_path' : path('show_elements_get', { 'type' : 'user', 'object_id' : viewed_user.id, 'tags_ids_json' : '' }) }%} {% endif %} {% endif %} {% endblock %}