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>
[[분류:장고 기능구현(초급)]]
[[분류:장고 기능구현(초급)]]