From 5369537388a3239f3f19080053fcdab6ad9b95eb Mon Sep 17 00:00:00 2001 From: Mitchell Riedstra Date: Sun, 10 Oct 2021 23:33:11 -0400 Subject: Rip out registration and the audit log for now. Upgrade to Django 3.2 --- app/dispatchAuth/forms.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'app/dispatchAuth/forms.py') diff --git a/app/dispatchAuth/forms.py b/app/dispatchAuth/forms.py index 99781f7..72aa46b 100644 --- a/app/dispatchAuth/forms.py +++ b/app/dispatchAuth/forms.py @@ -1,11 +1,11 @@ -from registration.forms import RegistrationForm +# from registration.forms import RegistrationForm from .models import User -class UserForm(RegistrationForm): - # fields = ['email', 'first_name', 'last_name'] - # model = User - - class Meta: - fields = ['email', 'first_name', 'last_name'] - model = User +# class UserForm(RegistrationForm): +# # fields = ['email', 'first_name', 'last_name'] +# # model = User +# +# class Meta: +# fields = ['email', 'first_name', 'last_name'] +# model = User -- cgit v1.2.3