Madmin alternatives and similar gems
Based on the "Admin Interface" category.
Alternatively, view madmin alternatives based on common mentions on social networks and blogs.
-
RailsAdmin
RailsAdmin is a Rails engine that provides an easy-to-use interface for managing your data -
ActiveScaffold
Save time and headaches, and create a more easily maintainable set of pages, with ActiveScaffold. ActiveScaffold handles all your CRUD (create, read, update, delete) user interface needs, leaving you more time to focus on more challenging (and interesting!) problems. -
โก Motor Admin โก
Low-code Admin panel and Business intelligence Rails engine. No DSL - configurable from the UI. Rails Admin, Active Admin, Blazer modern alternative. -
Sail
Sail is a lightweight Rails engine that brings an admin panel for managing configuration settings on a live Rails app -
Forest Admin
๐ Ruby on Rails agent for Forest Admin to integrate directly to your existing Ruby on Rails backend application. -
Wallaby
Autocomplete the resourceful actions and views for ORMs for admin interface and other purposes. -
Faalis
A RubyOnRails platform for rapid web application development. Containing a rich and flexible dashboard interface
SaaSHub - Software Alternatives and Reviews
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Madmin or a related project?
Popular Comparisons
README
Madmin
๐ A robust Admin Interface for Ruby on Rails apps
Why another Ruby on Rails admin? We wanted an admin that was:
- Familiar and customizable like Rails scaffolds (less DSL)
- Supports all the Rails features out of the box (ActionText, ActionMailbox, has_secure_password, etc)
- Stimulus / Turbolinks / Hotwire ready
[Madmin Screenshot](docs/images/screenshot.png) We're still working on the design!
Installation
Add madmin
to your application's Gemfile:
bundle add madmin
Then run the madmin generator:
rails g madmin:install
This will install Madmin and generate resources for each of the models it finds.
Resources
Madmin uses Resource
classes to add models to the admin area.
Generate a Resource
To generate a resource for a model, you can run:
rails g madmin:resource ActionText::RichText
Configuring Views
The views packaged within the gem are a great starting point, but inevitably people will need to be able to customize those views.
You can use the included generator to create the appropriate view files, which can then be customized.
For example, running the following will copy over all of the views into your application that will be used for every resource:
rails generate madmin:views
The view files that are copied over in this case includes all of the standard Rails action views (index, new, edit, show, and _form), as well as:
application.html.erb
(layout file)_javascript.html.erb
(default JavaScript setup)_navigation.html.erb
(renders the navigation/sidebar menu)
As with the other views, you can specifically run the views generator for only the navigation or application layout views:
rails g madmin:views:navigation
# -> app/views/madmin/_navigation.html.erb
rails g madmin:views:layout # Note the layout generator includes the layout, javascript, and navigation files.
# -> app/views/madmin/application.html.erb
# -> app/views/madmin/_javascript.html.erb
# -> app/views/madmin/_navigation.html.erb
If you only need to customize specific views, you can restrict which views are copied by the generator:
rails g madmin:views:index
# -> app/views/madmin/application/index.html.erb
You might want to make some of your model's attributes visible in some views but invisible in others.
The attribute
method in model_resource.rb gives you that flexibility.
# -> app/madmin/resources/book_resource.rb
class UserResource < Madmin::Resource
attribute :id, form: false
attribute :tile
attribute :subtitle, index: false
attribute :author
attribute :genre
attribute :pages, show: false
end
You can also scope the copied view(s) to a specific Resource/Model:
rails generate madmin:views:index Book
# -> app/views/madmin/books/index.html.erb
Custom Fields
You can generate a custom field with:
rails g madmin:field Custom
This will create a CustomField
class in app/madmin/fields/custom_field.rb
And the related views:
# -> app/views/madmin/fields/custom_field/_form.html.erb
# -> app/views/madmin/fields/custom_field/_index.html.erb
# -> app/views/madmin/fields/custom_field/_show.html.erb
You can then use this field on our resource:
class PostResource < Madmin::Resource
attribute :title, field: CustomField
end
Authentication
You can use a couple of strategies to authenticate users who are trying to access your madmin panel: [Authentication Docs](docs/authentication.md)
๐ Contributing
This project uses Standard for formatting Ruby code. Please make sure to run standardrb before submitting pull requests.
๐ License
The gem is available as open source under the terms of the MIT License.
*Note that all licence references and agreements mentioned in the Madmin README section above
are relevant to that project's source code only.