Displaying 1 result from an estimated 1 matches for "new_comment_body".
2007 Sep 23
9
Code reviews: my dumb use of acts_as_commentable (newbie)
...n_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" %>
<% end %>
</fieldset>
My review.rb model has:
acts_as_commentable # yeah, this seems fine
attr_accessor :new_comment_title # do I really ne...