Prev Lesson | TOC | Next Lesson

Clean up links on the topics list

Goal:

Our app is nearly done! The main topics listing page is pretty busy. There are a lot of links that aren't necessary.

Let's clean up the topics list page by doing the following:

Steps:

Open app/views/topics/index.html.erb and remove these two lines:

<td><%= link_to 'Show', topic %></td>
<td><%= link_to 'Edit', edit_topic_path(topic) %></td>

Change the line with the word 'Destroy' to this:

<td><%= link_to 'Delete', topic, :confirm => 'Are you sure?', :method => :delete %></td>

Now save your file and try reloading in your browser to see the changes.

What Just Happened?

Prev Lesson | TOC | Next Lesson