I have code :
ActiveAdmin.register MyTable do controller do
def edit
#---This code doesn't work
render :template=>"myEditTemplate.html",:layout =>"active_admin"
end
def new
#--code in this section works fine
render :template=>"myNewTemplate.html",:layout =>"active_admin"
end
end
I want to see my edit template code under url like this: http://*/admin/mytable/1/edit BUT activeadmin doesn't see me my code/It shows code with own template not my Why?