mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
[1.6.x] Fixed #22093 -- Made Form.Meta.fields examples consistent.
Thanks david-schultz at gmx.net for the suggestion.
Backport of 821fc925f0 from master
This commit is contained in:
@@ -1078,7 +1078,7 @@ code would be required in the app's ``admin.py`` file::
|
||||
|
||||
class Meta:
|
||||
model = MyUser
|
||||
fields = ['email', 'password', 'date_of_birth', 'is_active', 'is_admin']
|
||||
fields = ('email', 'password', 'date_of_birth', 'is_active', 'is_admin')
|
||||
|
||||
def clean_password(self):
|
||||
# Regardless of what the user provides, return the initial value.
|
||||
|
||||
Reference in New Issue
Block a user