Twice the same code, but only once it seems to work

I can’t see your partials However, partials are relative to the current controller.

<%= render :partial => ‘form’ %> works for admin if the file _form.rhtml is located in the /views/admin folder.

Change it to this

<%= render :partial => ‘admin/form’ %>

and let me know if that works for you :slight_smile: