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

Open in your IDE?
  1. {% if object.id and object.operacion and object.operacion.deletedAt is null%}
  2.     <li id="action-switch-operacion" class="action">
  3.         <a class="sonata-action-element" href="{{ url('admin_app_operacion_edit', admin.getEntitySubClass is defined ? {'id': object.id, 'subclass': admin.getEntitySubClass} : {'id': object.operacion.id}) }}"
  4.            title="{{ 'link_action_switch_operacion'|trans({}, 'SonataAdminBundle') }}">
  5.             <i class="fas fa-toggle-off fa-2x"></i>
  6.         </a>
  7.     </li>
  8. {% endif %}