{% extends "ApplicationSonataAdminBundle:Button:main_button.html.twig" %} {% block content_button %} {% if admin.hasRoute('create') and admin.isGranted('CREATE')%} {% if display is not defined %} {% set display = '' %} {% endif %} {% if topList is defined and topList == true %}
  • {% endif %} {% if display == 'button' %} {% if admin.subClasses is empty %} {{ icon('plus') }}  {{ 'link_action_create'|trans({}, translationdomain) }} {% else %}
  • {% for subclass in admin.subclasses|keys %}
  • {{ icon('plus') }} {{ 'link_action_create'|trans({}, 'CommonTrans') }} {{ subclass|trans({}, admin.translationdomain) }}
  • {% endfor %} {% endif %} {% elseif display == 'dropdown' %} {% if admin.subClasses is empty %} {{ icon('plus') }}  {{ 'link_action_create'|trans({}, translationdomain) }} {% else %} {% for subclass in admin.subclasses|keys %}
  • {{ icon('plus') }} {{ 'link_action_create'|trans({}, 'CommonTrans') }} {{ subclass|trans({}, admin.translationdomain) }}
  • {% endfor %} {% endif %} {% endif %} {% if topList is defined and topList == true %}{% endif %} {% endif %} {% endblock %}