Skip to content
Snippets Groups Projects
Commit 2543f293 authored by salazard's avatar salazard
Browse files

remplace notif by contact

parent cf6e3608
Branches
No related tags found
1 merge request!67remplace notif by contact
# Generated by Django 2.2 on 2022-12-06 17:45
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('users', '0007_auto_20221028_1429'),
]
operations = [
migrations.AlterField(
model_name='user',
name='HasSignedCharter',
field=models.BooleanField(blank=True, default='False', null=True, verbose_name='Charte'),
),
]
......@@ -79,7 +79,8 @@ class User(AbstractUser):
phone_number = models.CharField('téléphone',
max_length=20, null=True, blank=True)
HasSignedCharter = models.BooleanField('Chartre', null=True, blank=True,default='False')
HasSignedCharter = models.BooleanField(
'Charte', null=True, blank=True, default='False')
@property
def student(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment