Minor display improvements
This commit is contained in:
parent
a08c25b893
commit
ba0b693187
5 changed files with 6 additions and 5 deletions
|
|
@ -57,7 +57,7 @@ class CandidateAdmin(admin.ModelAdmin):
|
|||
'fields': (('first_name', 'last_name', 'gender'),
|
||||
('street', 'pcode', 'city', 'district'),
|
||||
('mobile', 'email'),
|
||||
('birth_date', 'avs', 'handicap'),
|
||||
('birth_date', 'avs', 'handicap', 'has_photo'),
|
||||
('section', 'option'),
|
||||
('corporation', 'instructor'),
|
||||
('deposite_date', 'date_confirmation_mail', 'canceled_file'),
|
||||
|
|
@ -73,7 +73,6 @@ class CandidateAdmin(admin.ModelAdmin):
|
|||
'fields': (('registration_form', 'certificate_of_payement', 'cv', 'certif_of_cfc',
|
||||
'police_record', 'certif_of_800h', 'reflexive_text', 'work_certificate',
|
||||
'marks_certificate', 'proc_admin_ext', 'promise', 'contract'),
|
||||
'comment',
|
||||
('interview_date', 'interview_room'),
|
||||
('examination_result', 'interview_result', 'file_result', 'total_result_points',
|
||||
'total_result_mark')
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ class Migration(migrations.Migration):
|
|||
('integration_second_year', models.BooleanField(default=False, verbose_name='Intégration')),
|
||||
('date_confirmation_mail', models.DateField(blank=True, null=True, verbose_name='Mail de confirmation')),
|
||||
('canceled_file', models.BooleanField(default=False, verbose_name='Dossier retiré')),
|
||||
('has_photo', models.BooleanField(default=False)),
|
||||
('has_photo', models.BooleanField(default=False, verbose_name='Photo')),
|
||||
('registration_form', models.BooleanField(default=False, verbose_name="Formulaire d'inscription")),
|
||||
('certificate_of_payement', models.BooleanField(default=False, verbose_name='Attest. paiement')),
|
||||
('police_record', models.BooleanField(default=False, verbose_name='Casier judic.')),
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ class Candidate(models.Model):
|
|||
integration_second_year = models.BooleanField('Intégration', default=False)
|
||||
date_confirmation_mail = models.DateField('Mail de confirmation', blank=True, null=True)
|
||||
canceled_file = models.BooleanField('Dossier retiré', default=False)
|
||||
has_photo = models.BooleanField(default=False)
|
||||
has_photo = models.BooleanField(default=False, verbose_name='Photo')
|
||||
|
||||
corporation = models.ForeignKey(
|
||||
'stages.Corporation', null=True, blank=True, on_delete=models.SET_NULL, verbose_name='Employeur'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue