Sha256: 5acaacb7a99cc48374cac136a44c9aa295432c9671e8b701973466617ca195be

Contents?: true

Size: 885 Bytes

Versions: 14

Compression:

Stored size: 885 Bytes

Contents

<%- if manifestation.bookmarks.exists? -%>
  <ul>
    <%- manifestation.bookmarks.each do |bookmark| -%>
      <% if bookmark.shared? %>
        <li><%= link_to bookmark.user.username, bookmark -%>
          <%- bookmark.tags.each do |tag| -%>
            [<%= link_to tag.name, manifestations_path(tag: tag.name) -%>]
          <%- end -%>
          <%= bookmark.note -%>
          <%- if user_signed_in? and current_user == bookmark.user -%>
            <%= link_to image_tag('icons/page_edit.png', alt: t('page.edit')), edit_bookmark_path(bookmark) -%>
          <%- end -%>
        </li>
      <%- end -%>
    <%- end -%>
  </ul>
<%- else -%>
  <p>
    <%= t('bookmark.not_bookmarked') -%>
    <%- if user_signed_in? -%>
      <%= link_to t('bookmark.add_to_my_bookmark'), new_bookmark_path(bookmark: {url: manifestation_url(manifestation)}) -%>
    <%- end -%>
  </p>
<%- end -%>

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
enju_bookmark-0.2.0.beta.3 app/views/manifestations/_bookmarks_for_this_manifestation.html.erb
enju_bookmark-0.2.0.beta.2 app/views/manifestations/_bookmarks_for_this_manifestation.html.erb
enju_bookmark-0.2.0.beta.1 app/views/manifestations/_bookmarks_for_this_manifestation.html.erb
enju_bookmark-0.1.3 app/views/manifestations/_bookmarks_for_this_manifestation.html.erb
enju_bookmark-0.1.2 app/views/manifestations/_bookmarks_for_this_manifestation.html.erb
enju_bookmark-0.1.2.pre23 app/views/manifestations/_bookmarks_for_this_manifestation.html.erb
enju_bookmark-0.1.2.pre22 app/views/manifestations/_bookmarks_for_this_manifestation.html.erb
enju_bookmark-0.1.2.pre21 app/views/manifestations/_bookmarks_for_this_manifestation.html.erb
enju_bookmark-0.1.2.pre20 app/views/manifestations/_bookmarks_for_this_manifestation.html.erb
enju_bookmark-0.1.2.pre19 app/views/manifestations/_bookmarks_for_this_manifestation.html.erb
enju_bookmark-0.1.2.pre18 app/views/manifestations/_bookmarks_for_this_manifestation.html.erb
enju_bookmark-0.1.2.pre17 app/views/manifestations/_bookmarks_for_this_manifestation.html.erb
enju_bookmark-0.1.2.pre16 app/views/manifestations/_bookmarks_for_this_manifestation.html.erb
enju_bookmark-0.1.2.pre15 app/views/manifestations/_bookmarks_for_this_manifestation.html.erb