vendor/easycorp/easyadmin-bundle/src/Resources/views/default/action.html.twig line 1

Open in your IDE?
  1. <a class="{{ is_dropdown|default(false) ? 'dropdown-item' }} {{ action.css_class|default('') }}" title="{{ action.title|default('') is empty ? '' : action.title|trans(trans_parameters, translation_domain) }}" href="{{ action_href }}" target="{{ action.target }}">
  2.     {%- if action.icon %}<i class="fa fa-fw fa-{{ action.icon }}"></i> {% endif -%}
  3.     {%- if action.label is defined and not action.label is empty -%}
  4.         {{ action.label|trans(arguments = trans_parameters|merge({ '%entity_id%': item_id }), domain = translation_domain) }}
  5.     {%- endif -%}
  6. </a>