Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby Rails Routes and Resources Routes to Create Actions View for New Pets

Christopher Kemp
Christopher Kemp
3,446 Points

Within the form_for block, output a label for the name field.

I'm not necessarily understanding what this question is asking. Because didn't I call the "label" method in the first part of the challenge when I wrote "f.label.name" in the div?

app/views/pets/new.html.erb
<%= form_for(@pet) do |f| %>
<div class="name">
  f.label.name


<% end %>

2 Answers

You're really close, a couple of things to note here.

  • don't forget to close your </div>
  • the .label method is embedded ruby, so don't forget to add your erb tags (<%= ruby_here %>)
  • I don't think there is a .name method for forms. You can identify the params using :name instead.
<%= form_for(@pet) do |p|%>
    <%= p.label :name %>
    <%= p.text_field :name %>
<% end %>