Awesome themes for ActiveAdmin. Let's take a look? :)
Also take a look at our brother project, Awesome-ActiveAdmin, a curated list of awesome activeadmin resources, extensions, posts and utilities.
Are you developing a new theme for ActiveAdmin or have noticed some theme that isn't here? Please, make a pull request or create a new issue with the "New theme" tag, so I can add it here as soon as possible :)
If you want to suppress ActiveAdmin default flash notices after create/update/destroy, add this patch:
# config/initializers/active_admin_disable_default_flash_messages.rb
Rails.application.config.to_prepare do
ActiveAdmin::ResourceController.class_eval do
private
def set_flash_message(*)
# no-op: keeps ActiveAdmin from overriding the flash hash with default CRUD messages
end
end
end










