Sha256: 02f53e83e9d26d0f4387494622f678865bf53775c6b5f18b3ff8da83ae2f1357

Contents?: true

Size: 1.45 KB

Versions: 10

Compression:

Stored size: 1.45 KB

Contents

= Manage

Admin backend started from http://iain.nl/backends-in-rails-3-1

Based on inherit_resources, slim, kaminari

== Installing

Add the engine

to Gemfile

    gem 'manage'


to routes.rb yourapp/config/routes.rb:

    mount Manage::Engine, at: "/manage"


if you want to have custom design in your app for the manage engine add in application.rb:

    config.assets.precompile += [
      'manage/custom.css'
    ]

== Defining resource for administration


Add the resource to your app routes.rb yourapp/config/routes.rb:

    Manage::Engine.routes.draw do
      resources :cities
    end


Create controller in your application yourapp/app/controllers/manage/cities_controller.rb

    class Manage::CitiesController < Manage::ResourceController
        @@per_page = 10 # optional
    end


=== View overriding
You can overrede the views in

app/views/manage/countries

* _index.html.slim
* _form.html_slim
* edit.html.slim
* new.html.slim
* show.html.slim




== Authorization
In your app do

    rails generate devise AdminUser

    delete "devise_for :admin_users" from routes.rb


Create an admin user. The users benefit from the devise password validation/generation but doesn't use the devise controllers.


    AdminUser.create(email: 'admin@example.com', password: '11223344', password_confirmation: '11223344')


= TODO

* Make it work with devise session controllers
* add filters
* add search
* make nice layout

== License

This project rocks and uses MIT license

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
manage-1.3.14 README.rdoc
manage-1.3.13 README.rdoc
manage-1.3.12 README.rdoc
manage-1.3.11 README.rdoc
manage-1.3.10 README.rdoc
manage-1.3.9 README.rdoc
manage-1.3.8 README.rdoc
manage-1.3.7 README.rdoc
manage-1.3.6 README.rdoc
manage-1.3.5 README.rdoc