{% extends 'base.html.twig' %} {% block page_title %}{{ 'profile.title'|trans }}{% endblock %} {% block page_subtitle %}{{ 'profile.subtitle'|trans }}{% endblock %} {% block main %} {% import _self as widgets %} {{ include('default/_flash_messages.html.twig') }}
{{ widgets.profile_box(user, stats) }} {{ widgets.profile_infos(user, stats) }}
{% endblock %} {% macro profile_infos(user, stats) %}

{{ 'profile.about_me'|trans }}

{% endmacro %} {% macro profile_box(user, stats) %} {% import "AvanzuAdminThemeBundle:layout:macros.html.twig" as macro %}
{{ macro.avatar(user.avatar, user.username, 'profile-user-img img-responsive img-circle') }}

{{ user.alias }}

{{ user.title }}

{# Follow #}
{% endmacro %} {# -------------------------------- UNUSED FOR NOW -------------------------------- #} {% macro profile_list_unused(user, items, color) %} {% import "AvanzuAdminThemeBundle:layout:macros.html.twig" as macro %}
{{ macro.avatar(user.avatar, user.username) }}

{{ user.alias }} ({{ user.username }})

{{ user.title }}
{% endmacro %} {# -------------------------------- UNUSED FOR NOW -------------------------------- #} {% macro profile_box_unused(user, stats, color) %} {% import "AvanzuAdminThemeBundle:layout:macros.html.twig" as macro %}

{{ user.alias }} ({{ user.username }})

{{ user.title }}
{{ macro.avatar(user.avatar, user.username) }}
{% endmacro %}