SlashAdmin
A modern and fully overridable admin, just the rails way. Embeded admin user and authentication system, devise is not needed.
❤️ Demo repository 🚀 Live running
User
admin
Password
admin@admin
Motivation:
- Provide to rails the admin it deserves without DSL or obscure logic.
- Provide an easy to use and modern experience to final users.
I tried to take the best from two greats existing gem:
Design inspired from the awesome metronic admin theme:
Screenshots
Login

Dashboard

List

Edit / Create

Installation
Add this line to your application's Gemfile:
gem 'slash_admin'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install slash_admin
Gemfile
gem 'carrierwave'
Then:
$ rails g slash_admin:install
$ rails slash_admin:install:migrations
$ rails db:migrate
config/initializers/mime_types.rb
Mime::Type.register "application/xls", :xls
Rails.application.routes.draw do
mount SlashAdmin::Engine => "/"
end
Mounted as '/' but prefixed in the gem and in routes definition of models admin. See above.
Important
If you are using friendly_id gem, you have to add routes: :default like so:
friendly_id :title, use: :history, routes: :default
Example of create admin in seed.rb in your app:
SlashAdmin::Admin.create!(
username: 'admin',
email: '[email protected]',
password: 'admin@admin',
password_confirmation: 'admin@admin'
)
Documentation
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/nicovak/slash_admin. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
License
The gem is available as open source under the terms of the MIT License.
Code of Conduct
Everyone interacting in the slash_admin project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.