{% extends 'base.html.twig' %} {% block title %}Editar expediente {{ expediente.codigo }} | Bizkai Sida{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %}

Expediente {{ expediente.codigo }}

{{ form_start(form) }} {% include 'expediente/_form.html.twig' with { form: form, expediente: expediente } %} {{ form_end(form) }} {# ------------------------------------------------------------- #} {# A PARTIR DE AQUÍ YA ESTAMOS FUERA DEL FORMULARIO PRINCIPAL #} {# ------------------------------------------------------------- #} {# -------------------------------------------------------------- #} {# SECCIÓN DEL ÚLTIMO REGISTRO LEGAL (FUERA DEL FORM PRINCIPAL) #} {# -------------------------------------------------------------- #} {% if ultimoAmbito is defined and ultimoAmbito and formUltimo is defined %}
{% include 'ambito_legal/_form_ultimo.html.twig' with { formUltimo: formUltimo, ultimoAmbito: ultimoAmbito } %}
{% endif %} {# MODAL GLOBAL (fuera del form) #} {% include 'expediente/_valoracion_modal.html.twig' %} {% include 'expediente/_valoracion_modal_eliminar.html.twig' %} {% include 'ambito_legal/_modal.html.twig' %} Descargar informe PDF Volver al listado
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}