{% if app.request.attributes.get('_route') != 'tienda_index' %}
{% set header_buttons = [
{
'show' : app.request.attributes.get('_route') == 'tienda_prod_view' ,
'icon' : 'fas fa-arrow-left',
'text_xl_in' : 'volver.simple'| trans(),
'text_sm_post' : 'tienda.simple'| trans(),
'attr' : {
'class' : 'btn-secondary',
'href' : path('tienda_index')
}
},
{
'show' : prod.id != "" and app.request.attributes.get('_route') != 'prod_edit' and is_granted('ROLE_PRODUCTS_EDIT'),
'icon' : 'fas fa-edit',
'text_sm_pre' : 'editar.simple'| trans(),
'text_xl_in' : 'producto.simple'| trans(),
'attr' : {
'class' : 'btn-secondary',
'href' : path('prod_edit', {'id' : prod.id | default(0)})
}
},
]
%}
{% else %}
{% set header_buttons = [
] %}
{% endif %}
{{ include('includes/layout/__toolbar.html.twig', {
'header_buttons' : header_buttons,
'title_icon' : constant('App\\Entity\\Catalogo\\Producto::ICON_CLASS') | default(null)
}) }}