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 (
James Smith (author)
Thu May 08 10:50:32 -0700 2008
| name | age | message | |
|---|---|---|---|
| .. | |||
| |
README | Sat Apr 01 17:26:31 -0800 2006 | [technoweenie] |
| |
Rakefile | Sat Apr 01 17:26:31 -0800 2006 | [technoweenie] |
| |
init.rb | Sat Apr 01 17:26:31 -0800 2006 | [technoweenie] |
| |
install.rb | Sat Apr 01 17:26:31 -0800 2006 | [technoweenie] |
| |
lib/ | Sat Apr 01 17:26:31 -0800 2006 | [technoweenie] |
| |
test/ | Sat Apr 01 17:26:31 -0800 2006 | [technoweenie] |
README
LabeledFormHelper
=================
The LabeledFormHelper gives you helpers for label tags:
<%= label_tag('post_title', 'Title') %>
<label for="post_title">Title</label>
<%= label_for('post', 'category') %>
<label for="post_category">Category</label>
<% form_for :person, @person, :url => { :action => "update" } do |f| %>
First name: <%= f.text_field :first_name %>
<% end %>
<form action="update">
<p><label for="person_first_name">First Name</label><br /><input type="text" id="person_first_name"
name="person[first_name]" /></p>
</form>





