Displaying 1 result from an estimated 1 matches for "index_book".
Did you mean:
index_books
2012 Nov 18
3
Share partial among different resources
...>
Here is subjects_controller
def show
@subject = Subject.find(params[:id])
...
end
Here is subjects/index.html.erb (The file I want to render)
<% @subjects.each do |subject| %>
<tr>
<td class="hilite_list">
<a href="/books/index_books/<%= subject.id %>"><%=
subject.title %> (<%= subject.questions.count %>)</a>
</td>
--
Posted via http://www.ruby-forum.com/.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To po...