2025-01-19 01:13:59 +08:00
|
|
|
# frozen_string_literal: true
|
2025-01-20 18:08:55 +08:00
|
|
|
|
2025-01-19 01:13:59 +08:00
|
|
|
ActiveAdmin.register_page "Dashboard" do
|
|
|
|
menu priority: 1, label: proc { I18n.t("active_admin.dashboard") }
|
|
|
|
|
|
|
|
content title: proc { I18n.t("active_admin.dashboard") } do
|
|
|
|
div class: "blank_slate_container", id: "dashboard_default_message" do
|
|
|
|
span class: "blank_slate" do
|
|
|
|
span I18n.t("active_admin.dashboard_welcome.welcome")
|
|
|
|
small I18n.t("active_admin.dashboard_welcome.call_to_action")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Here is an example of a simple dashboard with columns and panels.
|
|
|
|
#
|
|
|
|
# columns do
|
|
|
|
# column do
|
|
|
|
# panel "Recent Posts" do
|
|
|
|
# ul do
|
|
|
|
# Post.recent(5).map do |post|
|
|
|
|
# li link_to(post.title, admin_post_path(post))
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
|
|
|
|
# column do
|
|
|
|
# panel "Info" do
|
|
|
|
# para "Welcome to ActiveAdmin."
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
end # content
|
|
|
|
end
|