How can I make padrino-admin page generator produce beautiful custom pages?

By default padrino-admin generates pretty ugly admin pages, totally unmaintainable:

.group
  =f.label :title
  =f.error_message_on :title
  =f.text_field :title, :class => :text_field
  %span.description Ex: a simple text

.group
  =f.label :name
  =f.error_message_on :name
  =f.text_field :name, :class => :text_field
  %span.description Ex: a simple text

--- more annoyingly redundant frak

.group.navform.wat-cf
  =f.submit pat(:save), :class => :button
  =f.submit pat(:cancel), :onclick => "window.location='#{url(:pages, :index)}';return false", :class => :button

I wrote a nice AdminFormBuilder < AbstractFormBuilder, connected it with set :default_builder, 'AdminFormBuilder', it generates same admin pages from very short code:

= f.inputs :name, :surname, :email
= f.inputs :password, :password_confirmation, :as => :password
= f.input :role, :as => :select, :options => access_control.roles, :descr => 'a simple text'
= f.submits

Now I want padrino g admin_page to generate more of such pages. What should I do?

link|improve this question

feedback

2 Answers

There are two ways:

1) Make your custom admin gem copying as base the actual padrino-admin 2) Fork the project (where now we support a new admin based on bootstrap) apply your changes and submit a pull request.

Btw the most interesting file for this job is this: https://github.com/padrino/padrino-framework/blob/master/padrino-admin/lib/padrino-admin/generators/admin_page.rb

link|improve this answer
Will do with the second option. What is the right place for custom admin templates in padrino app tree? – ujifgc Nov 14 '11 at 16:06
vendor/templates – DAddYE Nov 16 '11 at 15:38
Thank you, small patch here: github.com/ujifgc/padrino-framework/commit/… – ujifgc Nov 19 '11 at 7:45
feedback
up vote 0 down vote accepted

Here is one-line patch for padrino-admin gem: https://github.com/ujifgc/padrino-framework/commit/b07399bdfbc15d05682237c64580e77558ac9fce

Now I can place copy of original templates folder from padrino-admin-0.10.5/lib/padrino-admin/generators to vendor/padrino-admin/generators and enjoy my own admin page templates.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.