ensl.org/app/views/comments/_new.html.erb
2014-04-09 01:50:07 +01:00

23 lines
653 B
Text

<div class="comment-form">
<h3>New comment</h3>
<% if cuser %>
<%= form_for(@comment, remote: true) do |f| %>
<ul>
<% @comment.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
<%= f.hidden_field :commentable_id %>
<%= f.hidden_field :commentable_type %>
<div class="fields">
<%= f.text_area :text, rows: 5, cols: 40, id: "textArea" %>
</div>
<div class="controls">
<%= f.submit 'Post Comment' %>
</div>
<% end %>
<% else %>
Please log in or <%= link_to "register", new_user_path %> to post comments.
<% end %>
</div>