| 1 | ActiveAdmin.register Meta do |
| 2 | menu priority: 8, parent: 'Page' |
| 3 | permit_params :home, :title, :description, :locale |
| 4 | |
| 5 | index do |
| 6 | selectable_column |
| 7 | column :home |
| 8 | column :title |
| 9 | column :description |
| 10 | column :locale |
| 11 | actions |
| 12 | end |
| 13 | |
| 14 | filter :home |
| 15 | filter :title |
| 16 | filter :description |
| 17 | filter :locale |
| 18 | filter :created_at |
| 19 | filter :updated_at |
| 20 | |
| 21 | show do |
| 22 | attributes_table do |
| 23 | row :home |
| 24 | row :title |
| 25 | row :description |
| 26 | row :locale |
| 27 | row :created_at |
| 28 | row :updated_at |
| 29 | end |
| 30 | end |
| 31 | |
| 32 | form do |f| |
| 33 | f.inputs do |
| 34 | f.input :home |
| 35 | f.input :title |
| 36 | f.input :description |
| 37 | f.input :locale |
| 38 | end |
| 39 | f.actions |
| 40 | end |
| 41 | end |