{% macro coleccion(titulo, class_id, form) %} {{ titulo }} {{ form_errors(form) }} {% if form.children %} {% endif %} {% for funcion in form %} {{ form_widget(funcion) }} {% endfor %} {% if form.children %} {% endif %} {% endmacro %} {% macro checkbox_ria(form, label) %}

{% endmacro %} {% macro checkbox_poderJudicial(form, label) %}

{% endmacro %} {% macro rango_fechas(fechaInicio, fechaFin, checkbox_ria, texto_checkbox) %}
{{ _self.checkbox_ria(checkbox_ria, texto_checkbox) }}
{{ form_row(fechaInicio) }}
{{ form_widget(fechaFin, {'attr': {'class': 'dateFechaFin datepicker todos_o_ninguno'}}) }} {{ form_label(fechaFin) }} {{ form_errors(fechaFin) }}
{% endmacro %} {% macro archivo_adjunto(form, label, urlEntity, urlDelete) %} {% set hayAdjunto = (urlEntity != '') %} {% if hayAdjunto %} {% set path_adjunto = form.parent.vars.data.presentacion.id ~ "/" ~ urlEntity %}
{{ label }} visibility highlight_off
{% endif %}
{{ form_errors(form) }}
{% endmacro %} {# {% macro archivo_adjunto_paso1_registro_antecedentes(form, label, urlEntity, urlDelete, adjunto_urlAntecedentes) %} {% set existe_Archivo = file_exists(adjunto_urlAntecedentes) %} {% set hayAdjunto = (urlEntity != '' and existe_Archivo) %} {% if hayAdjunto %} {% set path_adjunto = form.parent.vars.data.id ~ "/" ~ urlEntity %}
{{ label }} visibility highlight_off
{% endif %}
{% if hayAdjunto %} {{ form_widget(form, {'attr': {'class': 'no_jquery_validate'}}) }} {% else %} {{ form_widget(form) }} {% endif %} {{ form_label(form) }} {{ form_help(form) }}
{% endmacro %} #} {% macro archivo_adjunto_paso1(form, label, urlEntity, urlDelete, clase) %} {% set hayAdjunto = (urlEntity != '') %} {% if hayAdjunto %} {% set path_adjunto = form.parent.vars.data.id ~ "/" ~ urlEntity %}
{{ label }} visibility highlight_off
{% endif %}
{% if hayAdjunto %} {{ form_widget(form, {'attr': {'class': 'no_jquery_validate'}}) }} {% else %} {{ form_widget(form) }} {% endif %} {{ form_label(form) }} {{ form_help(form) }}
{% endmacro %} {% macro archivo_adjunto_paso1_constancia_domicilio(form, label, urlEntity, urlDelete, adjunto_urlConstanciaDomicilio) %} {% set existe_Archivo = file_exists(adjunto_urlConstanciaDomicilio) %} {% set hayAdjunto = (urlEntity != '' and existe_Archivo) %} {% if hayAdjunto %} {% set path_adjunto = form.parent.vars.data.id ~ "/" ~ urlEntity %}
{{ label }} visibility highlight_off
{% endif %}
{{ form_widget(form) }} {{ form_label(form) }} {{ form_help(form) }}
{% endmacro %} {% macro archivo_adjunto_pasos(form, label, urlEntity, urlDelete, clase, id, carpeta_adjuntos) %} {% set hayAdjunto = (urlEntity != '') %} {% if hayAdjunto %} {% set path_adjunto = form.parent.vars.data.presentacion.id ~ "/" ~ urlEntity %} {% set ruta = carpeta_adjuntos ~ "/" ~ path_adjunto %} {% set existe_Archivo = file_exists(ruta) %} {% if existe_Archivo %}
{{ label }} visibility highlight_off
{% endif %} {% endif %} {% set estaArchivo = (hayAdjunto and existe_Archivo) %}
{% if estaArchivo %} {{ form_widget(form, {'attr': {'class': 'no_jquery_validate'}}) }} {% else %} {{ form_widget(form) }} {% endif %} {{ form_label(form) }} {{ form_help(form) }}
{% endmacro %}