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

Open in your IDE?
  1. {% if object.id and object.valoracion %}
  2.     {% if admin.getEntitySubClass is defined %}
  3.         <li id="action-switch-valoracion" class="action" style="grid-area: switch_valoracion_button">
  4.             <a class="sonata-action-element" href="{{ url('switch-admin_app_valoracion_edit', {'id': object.valoracion.id, 'subclass': admin.getEntitySubClass}) }}"
  5.                title="{{ 'link_action_switch_valoracion'|trans({}, 'SonataAdminBundle') }}">
  6.                 <i class="fas fa-toggle-on fa-2x"></i>
  7.             </a>
  8.         </li>
  9.     {% else %}
  10.         <li id="action-switch-valoracion" class="action" style="grid-area: switch_valoracion_button">
  11.             <a class="sonata-action-element" href="{{ url('admin_app_valoracion_edit', {'id': object.valoracion.id}) }}"
  12.                title="{{ 'link_action_switch_valoracion'|trans({}, 'SonataAdminBundle') }}">
  13.                 <i class="fas fa-toggle-on fa-2x"></i>
  14.             </a>
  15.         </li>
  16.     {% endif %}
  17. {% endif %}