Sha256: b1de3ca8093a1108564a89ec1e63a48fc1d46f249bbcf44344e6936f0facf57e
Contents?: true
Size: 1.74 KB
Versions: 2
Compression:
Stored size: 1.74 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"> <div class="search_form"> <%= form_for :bookmarks, :url => bookmarks_path, :html => {:method => 'get'} do -%> <p> <%= 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="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? :destroy, bookmark -%> <%= link_to t('page.show'), bookmark_path(bookmark) -%> <%= link_to t('page.destroy'), bookmark_path(bookmark), :data => {:confirm => t('page.are_you_sure')}, :method => :delete -%> <%- end -%> </td> </tr> <%- end -%> </table> <%= will_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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
enju_bookmark-0.0.21 | app/views/bookmarks/_index.html.erb |
enju_bookmark-0.0.20 | app/views/bookmarks/_index.html.erb |