show.html.erb 240 B

123456789101112131415
  1. <p id="notice"><%= notice %></p>
  2. <p>
  3. <b>Content:</b>
  4. <%= @micropost.content %>
  5. </p>
  6. <p>
  7. <b>User:</b>
  8. <%= @micropost.user_id %>
  9. </p>
  10. <%= link_to 'Edit', edit_micropost_path(@micropost) %> |
  11. <%= link_to 'Back', microposts_path %>