エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
ActiveAdmin custom views which retain the ActiveAdmin layout
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
ActiveAdmin custom views which retain the ActiveAdmin layout
I have a rails 3 app with the ActiveAdmin gem. My goal is to make a custom controller rendering i... I have a rails 3 app with the ActiveAdmin gem. My goal is to make a custom controller rendering in custom views which keep it layout. I succeeded to make a custom controller rendering in custom views with this code : pages.rb : ActiveAdmin.register_page 'Pages' do content only: :index do render 'index' end content only: :edit do render partial: 'edit' end controller do def index @search = Page.inc

