RBOnRails-learning/app/views/articles/show.html.erb

17 lines
387 B
Plaintext
Raw Normal View History

2024-08-07 14:43:33 +00:00
<h1><%= @article.title %></h1>
<p><%= @article.body %></p>
<ul>
<li><%= link_to "Edit", edit_article_path(@article) %></li>
<li><%= link_to "Destroy", article_path(@article), data: {
turbo_method: :delete,
turbo_confirm: "Are you sure?"
} %></li>
</ul>
<h2>Comments</h2>
<%= render @article.comments %>
<h2>Add a comment</h2>
<%= render "comments/form" %>