From 63732489102f173f9e65964b11561ace3d0438b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Thu, 24 Oct 2013 10:17:09 +0200 Subject: [PATCH] Fixed #24: Now you can change the notify changes by me in the admin --- greenmine/base/users/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/greenmine/base/users/forms.py b/greenmine/base/users/forms.py index ee49efbf..a4538d7e 100644 --- a/greenmine/base/users/forms.py +++ b/greenmine/base/users/forms.py @@ -26,7 +26,7 @@ class UserCreationForm(DjangoUserCreationForm): class UserChangeForm(DjangoUserChangeForm): 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: model = User