8 lines
264 B
Plaintext
8 lines
264 B
Plaintext
<% if current_user %>
|
|
<h3>New comment</h3>
|
|
<%= form_for [@post, @comment] do |f| %>
|
|
<%= render partial: "mdhelp" %>
|
|
<%= f.text_area :content, placeholder: "Comment", class: "comment" %>
|
|
<p><%= f.submit class: "btn blue" %></p>
|
|
<% end %>
|
|
<% end %> |