form_for not translating into the same controller/action

I have a form_for tag in my view:

<%form_form :network, :controller => :network, :action => :create do | form>%>

which is translating into the following when I view the source:

<form action="/network/my_networks" method="post">

Why would this be happening?

Thanks,

Scott