POC Campus Condorcet : ajout d'une affiliation non definie

This commit is contained in:
Paul Marillonnet 2017-09-28 16:25:45 +02:00
parent ae4a0a580e
commit 46e9dd9de4
1 changed files with 2 additions and 1 deletions

View File

@ -24,6 +24,7 @@ AFFECTATION_CHOICES = (
)
EMP_CORPS_CHOICES = (
('', _('Unspecified status')),
('{NCORPS}056', "ADJ. ADM DE L'EN ET DE L'ENS SUP"),
('{NCORPS}837', 'ADJOINT TECHNIQUE DE RECH.ET FORMATION'),
('{NCORPS}839', 'ADJOINT TECHNIQUE-RECHERCHE & FORMATION'),
@ -163,7 +164,7 @@ class RegistrationForm(forms.Form):
required=False, max_length=100, label=_("Assignment units"))
# supannEmpCorps
s_emp_corps = forms.ChoiceField(
choices=EMP_CORPS_CHOICES, label=_("Source entity"))
choices=EMP_CORPS_CHOICES, required=False, label=_("Source entity"))
# supannListeRouge
s_liste_rouge = forms.BooleanField(
initial=True, required=False, label=_("Unlist contact information"))