diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-02-06 20:47:08 -0200 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-02-06 20:47:39 -0200 |
commit | 5f5f3a8216f5c8f2c484f80eec6ee69cd28d5977 (patch) | |
tree | eb9361a3f567b9ec5201ea269b949b7dc283ba3d /guides | |
parent | 4afb55f4e77d035826c0fba1983386aa03cda90e (diff) | |
download | rails-5f5f3a8216f5c8f2c484f80eec6ee69cd28d5977.tar.gz rails-5f5f3a8216f5c8f2c484f80eec6ee69cd28d5977.tar.bz2 rails-5f5f3a8216f5c8f2c484f80eec6ee69cd28d5977.zip |
Add link to the show action in the getting started
[ci skip]
Closes #16538
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/getting_started.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index ee742a0db7..51b8a2ca5f 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -911,6 +911,7 @@ And then finally, add the view for this action, located at <tr> <td><%= article.title %></td> <td><%= article.text %></td> + <td><%= link_to 'Show', article_path(article) %></td> </tr> <% end %> </table> |