templates/web/admin/center.twig line 1

Open in your IDE?
  1. {##
  2.  # Center column
  3.  #
  4.  # @ListChild (list="admin.main.page.content.center", weight="10")
  5.  #}
  6. {% include 'noscript.twig' %}
  7. {% if this.isTitleVisible() and this.getTitle() %}
  8.   <h1 class="title {% if this.isCapitalizedTitle() %}text-capitalize{% endif %}" id="page-title">
  9.     <div id="breadcrumb">
  10.         {{ widget_list('layout.main.breadcrumb') }}
  11.     </div>
  12.   </h1>
  13. {% endif %}
  14. {{ widget_list('admin.h1.after') }}
  15. {{ widget_list('admin.center') }}
  16. {% if this.get('target') == 'access_denied' %}
  17.   {% include 'access_denied.twig' %}
  18. {% endif %}
  19. {### TODO: will be moved to the dashboard side bar
  20. <widget template="common/dialog.tpl" head="Customer zone warning" body="customer_zone_warning.tpl" IF="{getCustomerZoneWarning()}" />
  21. ###}
  22. {% if this.get('target') == 'profile' and this.get('mode') == 'delete' %}
  23.   {{ widget(template='common/dialog.twig', head='Delete profile - Confirmation', body='profile/confirm_delete.twig') }}
  24. {% endif %}