MongoDB-Uppgift/app/views/posts/show.html.erb
2025-05-23 14:14:30 +02:00

10 lines
245 B
Text

<p style="color: green"><%= notice %></p>
<%= render @post %>
<div>
<%= link_to "Edit this post", edit_post_path(@post) %> |
<%= link_to "Back to posts", posts_path %>
<%= button_to "Destroy this post", @post, method: :delete %>
</div>