1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-21 09:58:23 +02:00

Send an e-mail verification to a new registered user

This commit is contained in:
Yohann D'ANELLO
2020-04-05 04:26:42 +02:00
parent 72e5df0cf5
commit 26281af673
8 changed files with 179 additions and 14 deletions

View File

@ -45,6 +45,12 @@ class Profile(models.Model):
)
paid = models.BooleanField(
verbose_name=_("paid"),
help_text=_("Tells if the user receive a salary."),
default=False,
)
email_confirmed = models.BooleanField(
verbose_name=_("email confirmed"),
default=False,
)