f39d1545f0
Creating profiles for BDS, COF and K-Fêt.
9 lines
242 B
Python
9 lines
242 B
Python
from django.db import models
|
|
|
|
|
|
from gestion.models import Profile
|
|
|
|
class BdsProfile(Profile):
|
|
profile = models.OneToOneField(Profile, on_delete=models.CASCADE)
|
|
|
|
# mailing = models.BooleanField("Recevoir les mails BDS", default=False)
|