This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit ca0e6d7c484e485006a7cf8651245dcf29cfe171
tree a279e0fd100a159c504c5c1c848c1950e7d7f308
parent d065d60f2a6a98075cfdfe492fb663c2664ff485
tree a279e0fd100a159c504c5c1c848c1950e7d7f308
parent d065d60f2a6a98075cfdfe492fb663c2664ff485
| name | age | message | |
|---|---|---|---|
| |
README | Tue Dec 09 07:19:27 -0800 2008 | |
| |
fancy_admin_controller/ | ||
| |
fancy_admin_layout/ | Tue Dec 09 07:19:27 -0800 2008 |
README
Fancy Admin Generators
======================
This is a collection of Ruby on Rails Generators to speed up the construction
of simple (and maybe complex) admin interfaces with a clean look.
The style is similar to the Wordpress admin interface reusing many of the CSS
styles that are provided in the default theme.
You can see some screenshots at :
* http://www.gazer.com.ar/3dg/fancy_admin_dashboard.png
* http://www.gazer.com.ar/3dg/fancy_admin_controller.png
Install
=======
At this moment the best way of using this is putting the generators in your
$HOME/.rails/generators folders.
Usage
=====
The first thing you need to run is the Admin Layout generator to create the basic
structure :
$ my_rails_app> ./script/generate fancy_admin_layout
To add a new Admin section just run the Admin Controller generator :
$ my_rails_app> ./script/generator fancy_admin_controller Games
The new controller is added automatically to the main bar, but you can add your
own Tabs. To do this just edit your RAILS_ROOT/app/views/admin.html.erb
layout file and add in the "adminmenu" list a new entry :
<li><%%= link_to_section "Games", "games", games_path %></li>
Dependencies
============
Right now this generators create code that rely on RESTful Authentication plugin.
I'll add command line parameters to enabled or disable this feature as soon as posible.







