21 lines
436 B
Text
21 lines
436 B
Text
- title "Bookmark"
|
|
|
|
%p
|
|
%strong Title:
|
|
= @bookmark.title
|
|
%p
|
|
%strong Link:
|
|
= link_to @bookmark.link
|
|
%p
|
|
%strong Owner:
|
|
= @bookmark.person.real_name
|
|
|
|
%h4= "comments (#{@bookmark.comments.count})"
|
|
= render "comments/comments", :post => @bookmark
|
|
|
|
%p
|
|
= link_to "Edit", edit_bookmark_path(@bookmark)
|
|
|
|
|
= link_to "Destroy", @bookmark, :confirm => 'Are you sure?', :method => :delete
|
|
|
|
|
= link_to "View All", bookmarks_path
|