cancan-attr-test/app/views/posts/show.html.erb
2013-06-28 01:22:16 -04:00

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 %>