2014-07-18 17:01:51 +02:00
|
|
|
ActiveAdmin.register_page 'Dashboard' do
|
|
|
|
menu priority: 1, label: proc{ I18n.t('active_admin.dashboard') }
|
2013-11-14 17:07:48 +01:00
|
|
|
|
2014-07-18 17:01:51 +02:00
|
|
|
content title: proc{ I18n.t('active_admin.dashboard') } do
|
2013-12-10 23:49:01 +01:00
|
|
|
columns do
|
|
|
|
column do
|
2014-07-18 17:05:05 +02:00
|
|
|
panel 'Moderateurs' do
|
2013-12-10 23:49:01 +01:00
|
|
|
ul do
|
|
|
|
User.all.map do |user|
|
2013-12-28 15:45:21 +01:00
|
|
|
li link_to("#{user.firstname} #{user.lastname} (#{user.login})", user)
|
2013-12-10 23:49:01 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-11-14 17:07:48 +01:00
|
|
|
end
|
|
|
|
|
2013-12-10 23:49:01 +01:00
|
|
|
column do
|
2014-07-18 17:01:51 +02:00
|
|
|
panel 'Commentaires' do
|
2013-12-10 23:49:01 +01:00
|
|
|
ul do
|
2013-12-28 15:45:21 +01:00
|
|
|
ActiveAdmin::Comment.all.map do |comment|
|
2014-07-18 17:01:51 +02:00
|
|
|
li link_to(comment.author.email, admin_comment_path(comment))
|
2013-12-10 23:49:01 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2014-07-18 23:20:30 +02:00
|
|
|
panel "ActiveAdmin" do
|
2014-07-18 23:42:33 +02:00
|
|
|
para %(Currently deployed: #{`git describe --tags --abbrev=0`}, #{link_to(`git rev-parse --short HEAD`, "https://gitorious.org/agenda-du-libre-rails/agenda-du-libre-rails/commit/#{`git rev-parse HEAD`}")}).html_safe
|
2014-07-18 23:20:30 +02:00
|
|
|
end
|
2013-12-10 23:49:01 +01:00
|
|
|
end
|
2013-11-14 17:07:48 +01:00
|
|
|
end
|