Hi there were no errors getting posted to the log but your suggestion
paid off anyway. Upon closer study of the log It became obvious what
was happening.
I was using name-spaced restful routes for my admin controllers e.g.
map.namespace :admin do |admin|
admin.resources :tutor_rates
admin.resources :subjects
admin.resources :roles
admin.resources :students
...
end
I guess its not supported 100% with streamlined? Somehow clicking
next page was gettng interpreted and a
as restful POST request on the "admin/users" controller which triggers
the "create" action.
I ended up removing the namespaced admin routes as they are not even
necessary in the first place.
Still I'd like to understand whether I actually did something wrong
or namespaced routes are just not fully supported