I have the URL
http://acme.example.com/view/view_container_content/15?javascript_disabled=true&container=aoeu
but I want it to look like
http://acme.example.com/view/container_name/content_name/
My models
Container has many sections
Section has many contents
and belongs to a Container
contents belong to a section
with friendly_id, I've seen how to do URL mapping with one object... but I haven't seen an example with three... ideas?