Guest User

Untitled

a guest
Oct 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <tr>
  2. <td class="micropost">
  3. <span class="content"> <%= micropost.content %></span>
  4. <span class="timestamp">
  5. Posted <%= time_ago_in_words(micropost.created_at) %> ago.
  6. </span>
  7. </td>
  8. <% if current_user?(micropost.user)%>
  9. <td>
  10. <%= link_to "delete", micropost, :method => :delete,
  11. :confirm => "You sure?",
  12. :title => feed_item.content %>
  13. </td>
  14.  
  15. <% end %>
  16. </tr>
Add Comment
Please, Sign In to add comment