Displaying 1 result from an estimated 1 matches for "right_descript".
2005 Mar 03
0
routes and link_to
...;, :action =>
"delete", :id => right.right_id) %></td>
<td class="column_data"><%= link_to(right.right_name, :action
=> "update", :id => right.right_id) %></td>
<td class="column_data"><%= right.right_description %></td>
</tr>
<% end %>
the problem is that rails_right is not present in the URL generated.
I thought that with the rule pasted above, it would generate the url
http://host/rails_right/right/delete/45 in place of
http://host/right/delete/45
Did I misunderstand?...