Sha256: 972da2db81849eddf5b775a3a11e32a1e76073d91088b820cab866a60be7871c
Contents?: true
Size: 1.82 KB
Versions: 6
Compression:
Stored size: 1.82 KB
Contents
<div id="content_detail" class="ui-corner-all"> <h1 class="title"><%= t('page.listing', :model => t('activerecord.models.bookmark')) -%></h1> <div id="content_list"> <h2 class="resource_title"> <%= t('bookmark.user_bookmark', :login_name => @user.username) -%> </h2> <div class="search_form"> <%= form_for :bookmarks, :url => user_bookmarks_path(@user), :html => {:method => 'get'} do -%> <p> <%= label_tag :search_form_top, t('page.search_term') -%>: <%= search_field_tag 'query', h(@query), {:id => 'search_form_top', :class => 'search_form', :placeholder => t('page.search_term')} -%> <%= submit_tag t('page.search') -%> </p> <%- end -%> </div> <table class="table table-striped index"> <tr> <th><%= t('activerecord.models.user') -%></th> <th><%= t('activerecord.models.bookmark') -%></th> <th><%= t('page.created_at') -%></th> <th></th> </tr> <%- @bookmarks.each do |bookmark| -%> <tr class="line<%= cycle("0", "1") -%>"> <td><%= link_to bookmark.user.username, bookmark.user -%></td> <td> <%= render 'manifestations/show_index', :manifestation => bookmark.manifestation -%> </td> <td><%= l(bookmark.created_at) -%></td> <td> <%- if can? :delete, bookmark -%> <%= link_to t('page.destroy'), bookmark, :data => {:confirm => t('page.are_you_sure')}, :method => :delete -%> <%- end -%> </td> </tr> <%- end -%> </table> <%= paginate(@bookmarks) -%> </div> </div> <div id="submenu" class="ui-corner-all"> <%- if user_signed_in? -%> <h4><%= t('page.bookmarklet') -%></h4> <ul> <li><a href="javascript:window.location.href='<%= new_bookmark_url -%>?bookmark[url]='+encodeURIComponent(location.href)+'&bookmark[title]='+encodeURIComponent(document.title);"><%= t('bookmark.add_to_library_bookmark') -%></a></li> </ul> <%- end -%> </div>
Version data entries
6 entries across 6 versions & 1 rubygems