diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 620d27aacbb..84993eedbec 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -1197,6 +1197,22 @@ And now, let's create a very similar `app/views/articles/edit.html.erb`: TIP: To learn more about partials, see [Layouts and Rendering in Rails ยง Using Partials](layouts_and_rendering.html#using-partials). +#### Finishing Up + +We can now update an article by visiting its edit page, e.g. +. To finish up, let's link to the edit +page from the bottom of `app/views/articles/show.html.erb`: + +```html+erb +

<%= @article.title %>

+ +

<%= @article.body %>

+ + +``` + ### Deleting Articles We're now ready to cover the "D" part of CRUD, deleting articles from the