{% extends "SonataUserBundle:Profile:action.html.twig" %} {% block sonata_profile_content %}
{% 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 %}