32강
# UpdateView 만들기
- profileapp / templates / views.py 에 코드 추가

- profileapp / tmeplates / urls.py 에 path 추가

- profileapp / templates / update.html 생성

- accountapp / templates / detail.html 수정


-> edit 이 새로 추가된 것을 볼 수 있음.

# 프로필에 사진이 뜨게 하는 법
- accountapp / templates / detail.html
<img src="{{ target_user.profile.image.url }}" alt="">

- pragmatic / urls.py 수정 (path 설정) --> 해야지 이미지 뜸

accountapp / templates / detail.html
-
(사진 크기) image style 설정

-
프로필 메시지 출력

# decorator