1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Add link to the show action in the getting started

[ci skip]

Closes #16538
This commit is contained in:
Rafael Mendonça França 2015-02-06 20:47:08 -02:00
parent 4afb55f4e7
commit 5f5f3a8216

View file

@ -911,6 +911,7 @@ And then finally, add the view for this action, located at
<tr> <tr>
<td><%= article.title %></td> <td><%= article.title %></td>
<td><%= article.text %></td> <td><%= article.text %></td>
<td><%= link_to 'Show', article_path(article) %></td>
</tr> </tr>
<% end %> <% end %>
</table> </table>