더북(TheBook)

마지막으로 app/views/Comment/_comment.html 뷰에 댓글 삭제 버튼을 추가하자.

▼ app/views/Comment/_comment.html

{{$post := .post}}
{{range .post.Comments}}
    <p>
        <mark>
            <b>{{.Commenter}}:</b>
        </mark>
        {{.Body}}
        <small>
            ({{formatDate .CreatedAt}})
        </small>
        <a href="{{url "Comment.Destroy" $post.Id .Id}}">Destroy</a>
    </p>
{{end}}

이제 기본 기능을 모두 갖춘 블로그가 완성됐다.

그림 10-16 댓글 삭제 링크
그림 10-17 댓글 삭제 완료
신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.