Sha256: 188fdff67e58cfb0128c5a8a7e5c13a7d935d8873e87e5ed5fdd986d899311e8
Contents?: true
Size: 1.11 KB
Versions: 6
Compression:
Stored size: 1.11 KB
Contents
module ActiveAdmin module Views module Pages class Form < Base def title I18n.t("active_admin.#{params[:action]}_model", :model => active_admin_config.resource_name) end def form_presenter active_admin_config.get_page_presenter(:form) || default_form_config end def main_content form_options = default_form_options.merge(form_presenter.options) if form_options[:partial] render(form_options[:partial]) else active_admin_form_for(resource, form_options, &form_presenter.block) end end private def default_form_options { :url => default_form_path, :as => active_admin_config.underscored_resource_name } end def default_form_path resource.persisted? ? resource_path(resource) : collection_path end def default_form_config ActiveAdmin::PagePresenter.new do |f| f.inputs f.buttons end end end end end end
Version data entries
6 entries across 6 versions & 2 rubygems