Make The Topic Title A Link
Goals
- Don't show the description on the list page
- Make the title a link and when it's clicked show the description
Steps
Step 1: Remove the description
<td><%= topic.description %></td><th>Description</th>Step 2: Make the title a link
<td><%= topic.title %></td><td><%= link_to topic.title, topic %></td>
Explanation
<td><%= topic.description %></td><th>Description</th>
<td><%= link_to topic.title, topic %></td>
Next Step:
Go on to Clean Up Links On The Topics List