agenda-libre-ruby/app/admin/orga.rb

66 lines
1.1 KiB
Ruby
Raw Normal View History

2015-02-15 17:10:17 +01:00
ActiveAdmin.register Orga do
permit_params :kind_id, :name, :description, :url, :city, :department,
:region_id, :active
scope :active
scope :moderated
scope :unmoderated
config.sort_order = 'updated_at_desc'
2014-07-18 17:01:51 +02:00
filter :kind, as: :check_boxes
filter :name
filter :region
2014-07-18 17:01:51 +02:00
index do
2015-03-17 23:33:20 +01:00
column :kind
2014-07-18 17:01:51 +02:00
column :name
column :city
column :department
column :region
column :url
column :feed
column :contact
column :updated_at
2014-07-18 17:01:51 +02:00
actions
end
show do |l|
attributes_table do
2015-03-17 23:33:20 +01:00
row :kind
2014-07-18 17:01:51 +02:00
row :name
row :description
row :city
2014-07-18 17:01:51 +02:00
row :department
row :region
row :url do
link_to l.url, l.url
end
row :feed do
link_to l.feed, l.feed
end
row :contact do
mail_to l.contact, l.contact
end
row :active
2014-07-18 17:01:51 +02:00
end
active_admin_comments
end
form do |f|
f.inputs do
2015-03-17 23:33:20 +01:00
f.input :kind
2014-07-18 17:01:51 +02:00
f.input :name
f.input :city
f.input :department
f.input :region
f.input :description
f.input :url
f.input :feed
f.input :contact
f.input :active
2014-07-18 17:01:51 +02:00
end
f.actions
end
end