Displaying 2 results from an estimated 2 matches for "category4".
Did you mean:
category
2006 May 28
3
Working with topics and categories
...Category < ActiveRecord::Base
belongs_to :topic
end
I need page structure like this:
<h3>Topic1</h3> (id = 1)
<ul><li>Category1</li> (topic_id = 1)
<li>Category2</li> (topic_id = 1)
<li>Category3</li> (topic_id = 1)
<li>Category4</li></ul> (topic_id = 1)
<h3>Topic2</h3> (id = 2)
<ul><li>Category1</li> (topic_id = 2)
<li>Category2</li> (topic_id = 2)
<li>Category3</li> (topic_id = 2)
<li>Category4</li></ul> (topic_id = 2)
<...
2008 Apr 01
1
Navigation Problems
Hi,
I am having problems with my page. I have a banner and navigation bar in
controller_name.rhtml in app/views/layout. Can someone please help?
Thanks
In the navigation bar, I have the following links:
Category1
Sub-Category1
Sub-Category2
Sub-Category3
Sub-Category4
Sub-Category5
Sub-Category6
In the main content, I have the following links:
Sub-Category1 edit delete
Sub-Category2 edit delete
Sub-Category3 edit delete
Sub-Category4 edit delete
Sub-Category5 edit delete
Sub-Category6 edit delete
Whe...