Created
January 26, 2014 10:45
-
-
Save stefanoverna/8631060 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ActiveAdmin.register Post do | |
index do | |
column :title | |
column :published_at | |
default_actions | |
end | |
form do |f| | |
f.inputs "Dettagli" do | |
f.input :title | |
f.input :body | |
f.input :published_at | |
end | |
f.actions | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Railsyard::Backend.define_editor_for Post do | |
label :title | |
list do | |
field :published_at | |
end | |
edit do | |
field :title | |
field :body | |
field :published_at | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment