Skip to content

Form builder that simplifies the process of building forms in rails

License

Notifications You must be signed in to change notification settings

rubaidh/yet_another_form_builder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

YetAnotherFormBuilder
=====================

Yet another form builder to try and simplify the form building process by automagically adding appropriate labels to form inputs


Example
=======

Creating a form something like this:

<% form_for(object) do |f| %>
    <%= f.text_field :name %>
<% end %>

Will output something like this:

<label for="object_name">Name</label>
<input id="object_name" name="object[name]" size="30" type="text" />


Copyright (c) 2007-2009 Rubaidh Ltd, released under the MIT license

About

Form builder that simplifies the process of building forms in rails

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages