Adaptation PDF indemnisation
This commit is contained in:
parent
9fe46d2174
commit
92036f13c9
8 changed files with 38 additions and 19 deletions
21
stages/migrations/0036_corpcontact_etat_civil.py
Normal file
21
stages/migrations/0036_corpcontact_etat_civil.py
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('stages', '0035_contact_permis_sejour'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='corpcontact',
|
||||
name='etat_civil',
|
||||
field=models.CharField(blank=True, max_length=20, verbose_name='État-civil'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='corpcontact',
|
||||
name='etat_depuis',
|
||||
field=models.DateField(blank=True, null=True, verbose_name='Depuis le'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue