This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/app/views/comments/_new.html.erb
2014-04-28 03:01:33 +02:00

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 %>