Last active
October 16, 2020 20:27
-
-
Save hcosta/cba530aa8498b1058a60921a1f89d47e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_fieldsets = ( | |
(None, { | |
'classes': ('wide',), | |
'fields': ('username', 'email', 'password1', 'password2', 'avatar')} | |
), | |
) | |
fieldsets = ( | |
(None, {'fields': ('username', 'password')}), | |
(('Personal info'), { | |
'fields': ('first_name', 'last_name', 'email', 'avatar')}), | |
(('Permissions'), {'fields': ('is_active', | |
'is_staff', 'is_superuser', 'user_permissions')}), | |
(('Important dates'), {'fields': ('last_login', 'date_joined')}), | |
(('Groups'), {'fields': ('groups',)}), | |
) | |
hola |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sdsdsd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment