Sha256: e1979fe60cf389eb3de47df6500c7ee467a6ffdab71eba1d84942c923e808b2b

Contents?: true

Size: 1.9 KB

Versions: 3

Compression:

Stored size: 1.9 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

      # optional
      def collection_actions collection
        [
          view_context.link_to(t('manage.views.winners.export_as_bank_file'), [:export_as_bank_file, resource_class], method: :post, class: 'button')
        ].join('').html_safe
      end

      # optional
      def resource_actions resource
        [
          '',
          view_context.link_to('Login as', login_as_user_path(resource.id)),
        ].join('&nbsp;'.html_safe).html_safe
      end

    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

3 entries across 3 versions & 1 rubygems

Version Path
manage-1.3.17 README.rdoc
manage-1.3.16 README.rdoc
manage-1.3.15 README.rdoc