21 lines
253 B
Plaintext
21 lines
253 B
Plaintext
<p id="notice"><%= notice %></p>
|
|
|
|
<p>
|
|
<b>User:</b>
|
|
<%= @post.user %>
|
|
</p>
|
|
|
|
<p>
|
|
<b>Title:</b>
|
|
<%= @post.title %>
|
|
</p>
|
|
|
|
<p>
|
|
<b>Body:</b>
|
|
<%= @post.body %>
|
|
</p>
|
|
|
|
|
|
<%= link_to 'Edit', edit_post_path(@post) %> |
|
|
<%= link_to 'Back', posts_path %>
|