DetailView

    django 12. DetailView 를 이용한 개인 페이지 구현

    views.py 추가 from django.contrib.auth.models import User from django.views.generic import DetailView from accountapp.models import HelloWorld class AccountDetailView(DetailView): model = User context_object_name = 'target_user' template_name = 'accountapp/detail.html' context_object_name을 user값으로 지정하면 다른 사람 페이지에서 내 유저정보만 볼 수 있는 문제 발생 target_user로 지정 후 좀 더 정확하게 user정보 표시 detail.html 생성 {% extends ..