templates/admin/Button/show_inventario_button.html.twig line 1

Open in your IDE?
  1. {% set classSeparator = 'separator-left' %}
  2. {% if instanceof(object, "\\App\\Entity\\ActividadAbstract") %}
  3.     {% set classSeparator = '' %}
  4. {% endif %}
  5. {% if is_granted('ROLE_SUPER_ADMIN') and object.id and object.reloj %}
  6.     <li id="action-show-inventario" class="action">
  7.         <a class="sonata-action-element" href="{{ url('admin_app_reloj_edit', admin.getEntitySubClass is defined ? {'id': object.reloj.id, 'subclass': admin.getEntitySubClass} : {'id': object.reloj.id}) }}"
  8.             title="{{ 'link_action_show_inventario'|trans({}, 'SonataAdminBundle') }}">
  9.             <i class="perseo-icon-show-inventario perseo-icon-navbar-prometeo {{ classSeparator }}"></i>
  10.         </a>
  11.     </li>
  12. {% endif %}