Fixed #24: Now you can change the notify changes by me in the admin

remotes/origin/enhancement/email-actions
Jesús Espino 2013-10-24 10:17:09 +02:00
parent 31675ff757
commit 6373248910
1 changed files with 1 additions and 1 deletions

View File

@ -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