프로젝트를 진행하며 해당 오류가 났다.
* AttributeError: Manager isn't accessible via Post instances
view단에서 모델의 id값을 가지고 삭제를 할 때 발생한 에러이다.
* post = Post().objects.get(id = post_id)
이런 식으로 가져왔는데
objects를 사용할 때에는 class레벨에서 사용 가능한 거라고 한다.
instances에선 불가능하다
해결방법
* post = get_object_or_404(Post, id=post_id)
get_object_or_404를 이용해 해결 완료 ^o^