Displaying 1 result from an estimated 1 matches for "new_comment_titl".
Did you mean:
new_comment_title
2007 Sep 23
9
Code reviews: my dumb use of acts_as_commentable (newbie)
...;
<% form_for :review, :url=> { :action => "save_comment" } do |f| %>
<legend>Add Your Own Comment</legend>
<%= f.hidden_field :review_id %>
<p>
<label for="title">Title</label>
<%= f.text_field :new_comment_title, :size => 40 %>
</p>
<p>
<label for="comment">Body</label>
<%= f.text_field :new_comment_body, :size => 200 %>
</p>
<%= submit_tag "Save Comment", :class => "submit" %>
<...