{% set techniques = [infode.technique1, infode.technique2, infode.technique3, infode.technique4, infode.technique5, infode.technique6, infode.technique7, infode.technique8] %}
{% for tech in techniques %}
{% if tech is not empty %}
{{tech}}
{% endif %}
{% endfor %}
{% set profils = [infode.profil1, infode.profil2, infode.profil3, infode.profil4, infode.profil5, infode.profil6, infode.profil7, infode.profil8] %}
{% set has_profil = false %}
{% for p in profils %}{% if p is not empty %}{% set has_profil = true %}{% endif %}{% endfor %}
{% if has_profil %}
Votre profil
{% for p in profils %}
{% if p is not empty %}
{{p}}
{% endif %}
{% endfor %}
{% endif %}
{% set specs = [infode.spec1, infode.spec2, infode.spec3, infode.spec4, infode.spec5, infode.spec6, infode.spec7, infode.spec8] %}
{% set has_spec = false %}
{% for s in specs %}{% if s is not empty %}{% set has_spec = true %}{% endif %}{% endfor %}
{% if has_spec %}
Spécificités du poste
{% for s in specs %}
{% if s is not empty %}
{{s}}
{% endif %}
{% endfor %}
{% endif %}
Postuler en ligne
{{ form_start(employeurType, {'attr': {'id': 'contact-form'}}) }}
{% if employeurType.brochure is defined and form_errors(employeurType.brochure) %}
Type de fichier CV non valide.
{% endif %}
{% if employeurType.brochure2 is defined and form_errors(employeurType.brochure2) %}
Type de fichier Lettre de motivation non valide.
{% endif %}
{{ form_widget(employeurType.nomsemplyeur, {'attr': {'class': 'form-control', 'placeholder': 'Votre nom complet'}}) }}