Fixed #24: Now you can change the notify changes by me in the admin
parent
31675ff757
commit
6373248910
|
@ -26,7 +26,7 @@ class UserCreationForm(DjangoUserCreationForm):
|
||||||
|
|
||||||
class UserChangeForm(DjangoUserChangeForm):
|
class UserChangeForm(DjangoUserChangeForm):
|
||||||
notify_level = forms.ChoiceField(choices=User.NOTIFY_LEVEL_CHOICES)
|
notify_level = forms.ChoiceField(choices=User.NOTIFY_LEVEL_CHOICES)
|
||||||
notify_changes_by_me = forms.BooleanField()
|
notify_changes_by_me = forms.BooleanField(required=False)
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
model = User
|
model = User
|
||||||
|
|
Loading…
Reference in New Issue