Displaying 1 result from an estimated 1 matches for "category_help".
Did you mean:
category_helper
2006 Jul 07
8
Possible name clash?
Scenario:
Table in database has two fields, id and category (table name is:
categories)
Controller is named category_controller.rb
Model is named category.rb
Helper is named category_helper.rb
Form is named list.rhtml in view\category directory
The code in play on the form is (from generating scaffold):
<% for category in @categories %>
<tr>
<td><%= h(category.category) %>
<td><%= link_to ''Show'', :action => ''...