我使用rails 3,我有自定义的活动管理页面,名为" current_details", 我在管理页面中创建了控制器:
ActiveAdmin.register_page "Current Details" do
controller do
def index
@milestones = Milestone.all
@collection = @milestones.select{|a| a.milestone_status == false}
@current_details = @collection.select{ |a| a.delivery_date.to_date.strftime('%m%Y') == Date.today.strftime('%m%Y') or a.delivery_date.to_date.strftime('%m%Y') < Date.today.strftime('%m%Y') }
end
end
content only: :index do
render 'index'
end
end
我需要这个索引动作,我该怎么做?
我已经尝试过渲染部分,它会抛出错误:缺少部分admin / current_details / index。 我提到了this 任何帮助都会很明显。
答案 0 :(得分:1)
确保您拥有_index.html.erb
个文件
views/admin/myname/_index.html.erb