2014-10-31 2 views
0

내 모델에는 장고 사용자 모델과 일대일 관계가있는보다 일반적인 프로필과 일대일 관계가있는 특정 프로필이 있습니다. 내가 장고 관리에서 하나의 양식을 작성하고 세 가지 모델의 인스턴스를 만들 수 있고, 관계가 이미 설정되어 있어야합니다.맞춤 관리자 생성 양식

나는 장고 관리자를 너무 많이 망쳐 놓은 적이 없기 때문에 어떻게 작동시키는 지 잘 모르겠습니다. 여기 내 실패 시도 :

class CreateSpecializedProfileAdminForm(forms.ModelForm): 

    class Meta: 
     exclude = ['profile'] 

    first_name = forms.CharField(max_length=30) 
    last_name = forms.CharField(max_length=30) 
    email = forms.EmailField(max_length=30) 
    password = forms.CharField(max_length=30) 
    confirm_password = forms.CharField(max_length=30) 

    def clean(self): 
     password = self.cleaned_data['password'] 
     confirm_password = self.cleaned_data['confirm_password'] 
     if len(self.cleaned_data['password']) < 6: 
      raise forms.ValidationError('Password must be at least 6 characters.') 
     if password != confirm_password: 
      raise forms.ValidationError('Passwords must match.') 
     return super(CreateSpecializedProfileAdminForm, self).clean() 

    def save(self, commit=True): 
     from django.contrib.auth.models import User 
     first = self.cleaned_data['first_name'] 
     last = self.cleaned_data['last_name'] 
     email = self.cleaned_data['email'] 
     password = self.cleaned_data['password'] 
     user = User.objects.create_user(email, email, password) 
     user.first_name = first 
     user.last_name = last 
     user.save() 
     profile = UserProfile() 
     profile.user_auth = user 
     profile.save() 
     specialized_profile = SpecializedProfile() 
     specialized_profile.profile = profile 
     specialized_profile.save() 
     return specialized_profile 

class SpecializedProfileAdmin(admin.ModelAdmin): 

form = CreateSpecializedProfileAdminForm 

admin.site.register(SpecializedProfile, SpecializedProfileAdmin) 

답변