바뀜

251 바이트 추가됨 ,  2021년 11월 1일 (월) 14:09
70번째 줄: 70번째 줄:  
def create_profile(request):
 
def create_profile(request):
 
     pass
 
     pass
 +
</syntaxhighlight>
 +
 +
=== view에서 사용할 profile 추가 ===
 +
<syntaxhighlight lang="python">
 +
from .models import Profile
 +
class ProfileForm(forms.ModelForm):
 +
    class Meta:
 +
        model = Profile
 +
        fields = ['username', 'email', 'nickname']
 
</syntaxhighlight>
 
</syntaxhighlight>
 
[[분류:장고 기능구현(초급)]]
 
[[분류:장고 기능구현(초급)]]