Changeset 8629
- Timestamp:
- 01/12/08 01:05:36 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/railties/CHANGELOG
r8615 r8629 1 1 *SVN* 2 3 * Update scaffold to use labels instead of bold tags. Closes #10757 [zach-inglis-lt3] 2 4 3 5 * Resurrect WordNet synonym lookups. #10710 [tom./, matt] trunk/railties/lib/rails_generator/generators/components/scaffold/templates/view_edit.html.erb
r6869 r8629 6 6 <% for attribute in attributes -%> 7 7 <p> 8 <b><%= attribute.column.human_name %></b><br />8 <%%= f.label :<%= attribute.name %> %><br /> 9 9 <%%= f.<%= attribute.field_type %> :<%= attribute.name %> %> 10 10 </p> 11 12 11 <% end -%> 13 12 <p> trunk/railties/lib/rails_generator/generators/components/scaffold/templates/view_new.html.erb
r6869 r8629 6 6 <% for attribute in attributes -%> 7 7 <p> 8 <b><%= attribute.column.human_name %></b><br />8 <%%= f.label :<%= attribute.name %> %><br /> 9 9 <%%= f.<%= attribute.field_type %> :<%= attribute.name %> %> 10 10 </p> 11 12 11 <% end -%> 13 12 <p>