List pending users
This commit is contained in:
parent
49807d33d9
commit
f10497bac3
11 changed files with 95 additions and 13 deletions
|
|
@ -12,7 +12,7 @@ from django.urls import reverse, reverse_lazy
|
|||
from django.utils.encoding import force_bytes
|
||||
from django.utils.http import urlsafe_base64_encode
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
from member.tokens import account_activation_token
|
||||
from registration.tokens import account_activation_token
|
||||
from note.models import MembershipTransaction
|
||||
|
||||
|
||||
|
|
@ -53,6 +53,11 @@ class Profile(models.Model):
|
|||
default=False,
|
||||
)
|
||||
|
||||
registration_valid = models.BooleanField(
|
||||
verbose_name=_("registration valid"),
|
||||
default=False,
|
||||
)
|
||||
|
||||
email_confirmed = models.BooleanField(
|
||||
verbose_name=_("email confirmed"),
|
||||
default=False,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue