I have a form that displays differently depending on the parameter it was called with.
Ex.
testsite.local/users/new?type=client
So
You could always force it by:
params[:type] ||= "client"
in your new action in your controller. If type is not set then it will default to client. The URL will not show this however.