Obviously, I am new to this.
I need to make a link using rails to something within the model. The code I have is this. It is probably not even the correct syntax:
<li id="nav_home"><%= link_to 'SOMETHING', {:controller => 'inventories', :action => 'home'} %></li>
This code defaults to creating a text link, but I want the link element to link. Ideally it would output as so:
<li><a href="goes-to-something"></a></li>
Thanks!