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

Open in your IDE?
  1. {# @var ea \EasyCorp\Bundle\EasyAdminBundle\Context\AdminContext #}
    {# @var action \EasyCorp\Bundle\EasyAdminBundle\Dto\ActionDto #}
    {# @var entity \EasyCorp\Bundle\EasyAdminBundle\Dto\EntityDto #}
    {% if 'a' == action.htmlElement %}
        <a class="{{ isIncludedInDropdown|default(false) ? 'dropdown-item' }} {{ action.cssClass }}"
           href="{{ action.linkUrl }}"
           {% for name, value in action.htmlAttributes %}{{ name }}="{{ value|e('html_attr') }}" {% endfor %}>
            {%- if action.icon %}<i class="action-icon {{ action.icon }}"></i> {% endif -%}
            {%- if action.label is not empty -%}<span class="action-label">{{ action.label|trans|raw }}</span>{%- endif -%}
        </a>
    {% elseif 'button' == action.htmlElement %}
        <button class="{{ action.cssClass }}" {% for name, value in action.htmlAttributes %}{{ name }}="{{ value|e('html_attr') }}" {% endfor %}>
            <span class="btn-label">
                {%- if action.icon %}<i class="action-icon {{ action.icon }}"></i> {% endif -%}
                {%- if action.label is not empty -%}<span class="action-label">{{ action.label|trans|raw }}</span>{%- endif -%}
            </span>
        </button>
    {% endif %}