6

adminの「addnewuserpage」にカスタマイズされたユーザーのカスタム必須フィールドを表示する方法が見つかりませんでした。

AbstractUserを拡張するカスタムユーザーを作成し、3つの必須カスタムフィールドを追加しました。AbstractBaseUserではなくAbstractUserから拡張しているため、カスタムUserManagerを作成しませんでした。

管理者側の場合:1。カスタムUserCreationFormを拡張して作成しました。メタクラス内に、これらの新しい3つのカスタムフィールドを追加しました

しかし、管理者側にカスタムフィールドが表示されません。私はsmtを間違っていますか?

管理者側のコードは次のとおりです。

class MyUserCreationForm(UserCreationForm):
    """A form for creating new users. Includes all the required
    fields, plus a repeated password."""
    password1 = forms.CharField(label='Password', widget=forms.PasswordInput)
    password2 = forms.CharField(label='Password confirmation', widget=forms.PasswordInput)

    class Meta:
        model = get_user_model()
        fields = ('customField1', 'customField2', 'customField3',)

    def clean_password2(self):
        # Check that the two password entries match
        password1 = self.cleaned_data.get("password1")
        password2 = self.cleaned_data.get("password2")
        if password1 and password2 and password1 != password2:
            raise forms.ValidationError("Passwords don't match")
        return password2

    def save(self, commit=True):
        # Save the provided password in hashed format
        user = super(UserCreationForm, self).save(commit=False)
        user.set_password(self.cleaned_data["password1"])
        if commit:
            user.save()
        return user


class MyUserAdmin(UserAdmin):
    form = MyUserChangeForm
    add_form = MyUserCreationForm

    fieldsets = (
        (None, {'fields': [('username', 'password', 'customField1', 'customField2', 'customField3'),]}),
        (_('Personal info'), {'fields': ('first_name', 'last_name', 'email')}),
        (_('Permissions'), {'fields': ('is_active', 'is_staff', 'is_superuser',
                                   'groups', 'user_permissions')}),
        (_('Important dates'), {'fields': ('last_login', 'date_joined')}),
        )



admin.site.register( CustomUser, MyUserAdmin)
4

1 に答える 1

4

解決策 --- 拡張 UserAdmin クラスに「add_fieldsets」を追加すると、フィールドが表示されます。

add_fieldsets = ( (None, { 'classes': ('wide',), 'fields': ('username', 'password1', 'password2', 'customField1', 'customField2', 'customField3', )} ),
于 2013-09-17T08:00:51.830 に答える