[Answered ]-How to reactivate user django

1👍

There’s nowhere to save is_active to, since you haven’t assigned a database field to it.

You should change the is_active in your model to:

is_active = models.BooleanField(default=False)

1👍

In your Account model, change the is_active field definition to:

    is_active = models.BooleanField(verbose_name=_("active"), default=False)
👤OrenD

Leave a comment