Files
growstuff/app/views/comments/new.html.haml
2019-05-19 10:20:35 +12:00

12 lines
325 B
Plaintext

= content_for :title, "New comment"
%section.blog-post
.card.post{ id: "post-#{@post.id}" }
.card-header
%h2.display-3= @post.subject
.card-body= render "posts/single", post: @post || @comment.post, subject: true
= render partial: "posts/comments", locals: { post: @post || @comment.post }
= render 'form'