django 프로젝트를 하며 문제가 생겼다. 댓글 달기 기능인데 댓글을 달면 무조건 index로 설정해 놓았다. 근데 디테일 페이지를 추가하니 index에서 댓글을 달아도 index로가고 (원래 의도한바) detail에서 댓글을 달아도 index로 가는 것이다. (안돼) 그래서 해결방법을 찾아보았다. # 함수를 두개 만든다. @login_required def c_post(request, post_id): if request.method =='POST': comment = get_object_or_404(Post, id=post_id) comment_text = request.POST.get('comment_text') comment_user = User.objects.get(username = requ..