{% if assignment is defined %}
Assignment: {{ assignment.assignment }}
{% endif %} {% if candidate is defined %}
Candidate: {{ candidate.firstName }} {{ candidate.lastName }}
{% endif %} {% if assignment is defined %} {{ form_start(form, { "action": path("new_workspace_crm", {"assignmentId":assignment.id, "candidateId":candidate.id}), "attr": { "id": "ajaxModalForm", "class": "ajaxModalForm" } }) }} {% elseif candidate is defined %} {{ form_start(form, { "action": path("new_crm", { 'id': candidate.id }), "attr": { "id": "ajaxModalForm", "class": "ajaxModalForm" } }) }} {% else %} {{ form_start(form, { "action": path("new_candidate") }) }} {% endif %}
{{ form_label(form.cvFile) }} {{ form_widget(form.cvFile) }}
{#
{{ form_label(form.level) }} {{ form_widget(form.level) }}
#}
{{ form_label(form.position) }} {{ form_widget(form.position) }}
{{ form_label(form.educationNotes) }} {{ form_widget(form.educationNotes) }}
{{ form_label(form.EducationUniversity) }} {{ form_widget(form.EducationUniversity) }}
{{ form_label(form.EducationUniversityDegree) }} {{ form_widget(form.EducationUniversityDegree) }}
{{ form_label(form.EducationUniversityYear) }} {{ form_widget(form.EducationUniversityYear) }}
{{ form_label(form.YearsExperience) }} {{ form_widget(form.YearsExperience) }}
{{ form_label(form.careerDetails) }} {{ form_widget(form.careerDetails) }}
{{ form_label(form.mappingNotes) }} {{ form_widget(form.mappingNotes) }}
{{ form_label(form.salary) }} {{ form_widget(form.salary) }}
{{ form_label(form.bonus) }} {{ form_widget(form.bonus) }}
{{ form_label(form.homeCity) }} {{ form_widget(form.homeCity) }}
{{ form_label(form.homeState) }} {{ form_widget(form.homeState) }}
{{ form_label(form.homePostCode) }} {{ form_widget(form.homePostCode) }}
{{ form_label(form.homeCountry) }} {{ form_widget(form.homeCountry) }}
{{ form_label(form.diversity) }} {{ form_widget(form.diversity) }}
{{ form_label(form.source) }} {{ form_widget(form.source) }}
{{ form_label(form.notes) }} {{ form_widget(form.notes) }}
{{ form_label(form.custom1) }} {{ form_widget(form.custom1) }}
{{ form_label(form.custom2) }} {{ form_widget(form.custom2) }}
{{ form_label(form.custom3) }} {{ form_widget(form.custom3) }}
{{ form_label(form.custom4) }} {{ form_widget(form.custom4) }}
{{ form_label(form.reportTo) }} {{ form_widget(form.reportTo) }} Report To Clear
{% if is_granted('ROLE_ADMIN') %} {# #} {% endif %} {# old comment not #} {#
{{ form_label(form.action) }} {{ form_widget(form.action) }}
{{ form_label(form.internalNotes) }} {{ form_widget(form.internalNotes) }}
{{ form_label(form.clientNotes) }} {{ form_widget(form.clientNotes) }}
{{ form_label(form.toReport) }} {{ form_widget(form.toReport) }}
{{ form_label(form.result) }} {{ form_widget(form.result) }}
{{ form_label(form.contactDate) }} {{ form_widget(form.contactDate) }}
#} {{ form_end(form) }} {% include 'include/insert_form_js.html.twig' %}