{% set ruta_formulario = (action == 'curso_modal_new' ? path('curso_modal_new', { 'idView': presentacionAntecedentes.idView}) : path('curso_modal_edit', { 'id': curso.id})) %} {{ form_start(form, {'action': ruta_formulario }) }}
{{ form_row(form.nombre) }}
{{ form_row(form.cargaHoraria) }}
{{ form_row(form.duracionEnDias) }}
{% set hayError = not form.urlCertificado.vars.valid %} {% set hayAdjunto = hayError ? false : (curso.urlCertificado != '') %} {% if hayAdjunto %} {% set path_adjunto = curso.presentacion.id ~ "/" ~ curso.urlCertificado %}
Ver documentación respaldatoria visibility highlight_off
{% endif %}
{% if hayAdjunto %} {{ form_widget(form.urlCertificado, {'attr': {'class': 'no_jquery_validate'}}) }} {% else %} {{ form_widget(form.urlCertificado) }} {% endif %} {{ form_label(form.urlCertificado) }} {{ form_help(form.urlCertificado) }}
{{ form_end(form) }}