14 lines
362 B
Plaintext
14 lines
362 B
Plaintext
<%= turbo_stream_from @article %>
|
|
|
|
<p id="notice"><%= notice %></p>
|
|
|
|
<%= render @article %>
|
|
<%= render "articles/comments", article: @article %>
|
|
|
|
<div>
|
|
<%= link_to "Edit this article", edit_article_path(@article) %> |
|
|
<%= link_to "Back to articles", articles_path %>
|
|
|
|
<%= button_to "Destroy this article", article_path(@article), method: :delete %>
|
|
</div>
|