<%= notice %>

<%= @article.title %>

<%= @article.user.name %>

<%= @article.body %>

<%= link_to 'Edit', edit_article_path(@article) %> | <%= link_to 'Destroy', @article, method: :delete, data: { confirm: 'Are you sure?' } %> <%= link_to 'Back', articles_path %>

Listing Comments

<% @article.comments.each do |comment| %> <% end %>
<%= comment.user.name %> <%= comment.body %> <%= link_to 'Destroy', comment, method: :delete, data: { confirm: 'Are you sure?' } %>

New Comment

<%= form_for(@comment) do |f| %> <%= f.hidden_field :article_id, value: @article.id %> <%= f.text_area :body %>
<%= f.submit %>
<% end %>