1 # -*- encoding: utf-8 -*-
3 from django
import forms
4 from django
.forms
.models
import inlineformset_factory
5 from django
.forms
.widgets
import CheckboxSelectMultiple
6 from django
.forms
import ModelForm
8 from captcha
.fields
import CaptchaField
12 ################################################################################
14 ################################################################################
15 class CandidatPieceForm(inlineformset_factory(Candidat
,
17 nom
= forms
.MultipleChoiceField(choices
=TYPE_PIECE_CHOICES
,
18 widget
=CheckboxSelectMultiple
)
22 class PostulerOffreEmploiForm(ModelForm
):
23 captcha
= CaptchaField()
24 action
= "http://127.0.0.1:8000/api/candidat_add/"
26 def __init__(self
, *args
, **kwargs
):
27 self
.offre_emploi
= kwargs
.pop('offre_id')
28 super(PostulerOffreEmploiForm
, self
).__init__(*args
, **kwargs
)
30 def save(self
, *args
, **kwargs
):
31 kwargs2
= kwargs
.copy()
32 kwargs2
['commit'] = False
33 postulation
= super(PostulerOffreEmploiForm
, self
).save(*args
, **kwargs2
)
34 if 'commit' not in kwargs
or kwargs
['commit']:
40 exclude
= ('actif', 'offre_emploi',)
41 fields
= ('nom', 'prenom', 'genre', 'nationalite', 'situation_famille',
42 'nombre_dependant', 'niveau_diplome', 'employeur_actuel',
43 'poste_actuel', 'domaine_professionnel', 'telephone',
44 'email', 'adresse', 'ville', 'code_postal', 'etat_province',