Skip to content

Instantly share code, notes, and snippets.

@nicedawg
Last active February 29, 2020 02:55
Show Gist options
  • Save nicedawg/5e13311132f323e425be2488c7b2f5d4 to your computer and use it in GitHub Desktop.
Save nicedawg/5e13311132f323e425be2488c7b2f5d4 to your computer and use it in GitHub Desktop.
[Beginning Rails 6] Listing 9-2. The Article Partial in app/views/articles/show.html.erb
<%= render @article %>
<h3>Comments</h3>
<div id="comments">
<%= render @article.comments %>
</div>
<%= link_to "new comment", new_article_comment_path(@article), remote: true, id: 'new_comment_link' %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment