2011-06-21 80 views
16

我正在使用ActiveAdmin。默認情況下,評論框將出現在展示頁面的底部,但是在我對其進行定製後,評論框塊會消失。在定製的ActiveAdmin顯示頁面上顯示評論框

ActiveAdmin.register Book do 
    scope :all, :default => true 
    scope :publish 

    show do 
    attributes_table :name, :description, :owner, :company, :publish, :publisher 
    end 
end 

如何將評論框添加回顯示頁面?

回答

33

我得到了答案:-P

ActiveAdmin.register Book do 
    scope :all, :default => true 
    scope :publish 

    show do 
    attributes_table :name, :description, :owner, :company, :publish, :publisher 
    active_admin_comments # Add this line for comment block 
    end 
end 

就在節目塊的末尾添加 「active_admin_comments」。 我在源代碼demo site上找到它

相關問題