Sha256: 3c49734201c747281b4fd014160d22acc1fc54f1ad29c063ffa7ccd8b57f7b97
Contents?: true
Size: 915 Bytes
Versions: 5
Compression:
Stored size: 915 Bytes
Contents
= CustomizeAdmin == Installation === Rails 3 Add to your Gamefile: gem 'customize_admin' And then execute: bundle install After this run install generator: rails g customize_admin:install == Usage === Scaffold CustomizeAdmin allows you to create new resources and add them to your admin. For example: rails g customize_admin:scaffold product name:string description:text === Add resource CustomizeAdmin allows you to add new admin resource to your CustomizeAdmin using existing models rails g customize_admin:add_resource NEW_ADMIN_RESOURCE EXISTING_RESOURCE For example: rails g customize_admin:add_resource account user = Coming soon description of how to: == Customize views == Customize controllers === Search query Default search query is set like this: SEARCH_QUERY = "name LIKE ?" So, you can overwrite this in your current CustomizeAdmin controller and set different value
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
customize_admin-0.0.13 | README.rdoc |
customize_admin-0.0.12 | README.rdoc |
customize_admin-0.0.11 | README.rdoc |
customize_admin-0.0.10 | README.rdoc |
customize_admin-0.0.9 | README.rdoc |