We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Section used for the show view.
It inherits its configuration from the base section.
base
To configure which fields are shown in the "Show" view of a model, use the show method in the config block:
show
RailsAdmin.config do |config| config.model 'BlogPage' do show do field :title field :author_name end end end
You can display empty fields in show view with:
RailsAdmin.config do |config| config.compact_show_view = false end
More here
There was an error while loading. Please reload this page.