Sha256: bf754558983ca596f430fc71b15f441d6a4fae2a7759460ee8d49d81f4b2e514
Contents?: true
Size: 947 Bytes
Versions: 4
Compression:
Stored size: 947 Bytes
Contents
ActiveAdmin.register Ecm::Cms::ContentBox do permit_params(:name) if Rails.version >= '4.0.0' menu :parent => Proc.new { I18n.t('ecm.cms.active_admin.menu') }.call index do selectable_column column :name column :created_at column :updated_at ActiveAdmin::VERSION[0] < '1' ? default_actions : actions end show do panel Ecm::Cms::ContentBox.human_attribute_name(:ecm_cms_page_content_blocks) do table_for ecm_cms_content_box.ecm_cms_page_content_blocks, :i18n => Ecm::Cms::Page::ContentBlock do |content_block| column :ecm_cms_page column :body column :created_at column :updated_at end end end sidebar Ecm::Cms::ContentBox.human_attribute_name(:details), :only => :show do attributes_table_for ecm_cms_content_box do row :name row :created_at row :updated_at row :ecm_cms_page_content_blocks_count end end # sidebar end
Version data entries
4 entries across 4 versions & 1 rubygems