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

19 lines
484 B
Plaintext
Raw Normal View History

2024-08-07 14:43:33 +00:00
<h1><%= @article.title %></h1>
<p><%= @article.body %></p>
2024-08-08 09:19:44 +00:00
<% if logged_in? && @article.user_id == current_user.id %>
<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>
<% end %>
2024-08-07 14:43:33 +00:00
<h2>Comments</h2>
<%= render @article.comments %>
<h2>Add a comment</h2>
<%= render "comments/form" %>