You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
412 B
7 lines
412 B
{# templates/CRUD/list__action_clone.html.twig #}
|
|
{% if admin.hasAccess('edit', object) and admin.hasRoute('edit') %}
|
|
<a href="{{ admin.generateObjectUrl('clone', object) }}" class="btn btn-sm btn-default edit_link" title="{{ 'action_edit'|trans({}, 'SonataAdminBundle') }}">
|
|
<i class="fa fa-clone" aria-hidden="true"></i>
|
|
{{ 'Duplicar'|trans({}, 'SonataAdminBundle') }}
|
|
</a>
|
|
{% endif %}
|