{# This file is part of the Sonata package. (c) Thomas Rabaix For the full copyright and license information, please view the LICENSE file that was distributed with this source code. #} {% extends "SonataUserBundle:Profile:action.html.twig" %} {% block sonata_profile_content %} {% sonata_template_box 'This is the user profile template. Feel free to override it.' %}
{% set has_center = false %} {% for block in blocks %} {% if block.position == 'center' %} {% set has_center = true %} {% endif %} {% endfor %}
{% for block in blocks %} {% if block.position == 'left' %} {{ sonata_block_render({ 'type': block.type, 'settings': block.settings}) }} {% endif %} {% endfor %}
{% if has_center %}
{% for block in blocks %} {% if block.position == 'center' %} {{ sonata_block_render({ 'type': block.type, 'settings': block.settings}) }} {% endif %} {% endfor %}
{% endif %}
{% for block in blocks %} {% if block.position == 'right' %} {{ sonata_block_render({ 'type': block.type, 'settings': block.settings}) }} {% endif %} {% endfor %}
{% endblock %}