{% extends 'base.html.twig' %} {% block javascripts_base %} function clickEliminarInforme(e) { $url_eliminar=e.currentTarget.dataset.url; debugger; swal({ title: "Eliminar", text: "¿Está seguro que quiere eliminar este Informe Psicológico?", icon: "warning", buttons: true, }) .then((aceptar) => { if (aceptar) { window.location.href = $url_eliminar; } }); } {% endblock %} {% block breadcrumb %} {% endblock %} {% block titulo_body %}
assignment_ind

Informe Psicológico {% if informe.fechaRecepcion %} Fecha de Recepción: {{informe.fechaRecepcion|format_datetime('full', 'none', locale='es_AR')}} {% endif %}

{% endblock %} {% block body %} {% set presentacion = informe.presentacionAntecedentes %}
Volver al listado undo {% if (is_granted(constant('App\\Entity\\PsiConsejoUser::ROLE_INFORMATICA')) or is_granted(constant('App\\Entity\\PsiConsejoUser::ROLE_RESPONSABLE_INFORMES'))) %} Eliminar Informe delete {% endif %} {% endblock %}