123456789101112131415161718192021222324252627282930 |
- {#
- This file is part of the Sonata package.
- (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
- For the full copyright and license information, please view the LICENSE
- file that was distributed with this source code.
- #}
- {% if admin.hasRoute('create') and admin.isGranted('CREATE')%}
- {% if admin.subClasses is empty %}
- <a class="btn sonata-action-element" href="{{ admin.generateUrl('create') }}">{{ 'link_action_create'|trans({}, 'SonataAdminBundle') }}</a>
- {% else %}
- <span class="btn-group sonata-action-element">
- <a class="btn dropdown-toggle" data-toggle="dropdown" href="#">
- {{ 'link_action_create'|trans({}, 'SonataAdminBundle') }}
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu">
- {% for subclass in admin.subclasses|keys %}
- <li>
- <a href="{{ admin.generateUrl('create', {'subclass': subclass}) }}">{{ subclass }}</a>
- </li>
- {% endfor %}
- </ul>
- </span>
- {% endif %}
- {% endif %}
|