{% set title = (candidacy is defined and candidacy.id) ? 'edit' : 'add' %}

{{ title | trans }}

{% set action = (candidacy is defined and candidacy.id) ? path('app_candidate_edit_candidacy', {'id': candidate.id, 'candidacy':candidacy.id}) : path('app_candidate_add_candidacy', {'id': candidate.id}) %} {{ form_start(form, {'action': action, 'method': 'POST', 'attr': {'id':'formSubmit'}}) }}
{{ form_label( form.type, '', {'errors' : ''}) }} {{ form_widget(form.type) }} {{ form_errors(form.type) }}
{{ form_label( form.numberLesson, '', {'errors' : ''}) }} {{ form_widget(form.numberLesson) }} {{ form_errors(form.numberLesson) }}
{{ form_end(form) }}