From 3a20a60f0569d455dd579e3def4cc18984fa854c Mon Sep 17 00:00:00 2001 From: Commander1024 Date: Thu, 24 Dec 2020 20:22:33 +0100 Subject: [PATCH] Remove obsolete ExplorerChangeForm. --- django_lostplaces/lostplaces/forms.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/django_lostplaces/lostplaces/forms.py b/django_lostplaces/lostplaces/forms.py index 4ccdff2..fd0e423 100644 --- a/django_lostplaces/lostplaces/forms.py +++ b/django_lostplaces/lostplaces/forms.py @@ -35,11 +35,6 @@ class ExplorerCreationForm(UserCreationForm): fetched_voucher.delete() return True -class ExplorerChangeForm(UserChangeForm): - class Meta: - model = User - fields = ('username', 'email', 'first_name', 'last_name') - class PlaceForm(forms.ModelForm): class Meta: model = Place