Sha256: a1746f11ba6ca388b6b9aed04ddd263a19a5b5439abc90544c5e341ca61c5823

Contents?: true

Size: 1.76 KB

Versions: 8

Compression:

Stored size: 1.76 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="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? :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

8 entries across 8 versions & 1 rubygems

Version Path
enju_bookmark-0.1.2.pre4 app/views/bookmarks/_index.html.erb
enju_bookmark-0.1.2.pre3 app/views/bookmarks/_index.html.erb
enju_bookmark-0.1.2.pre2 app/views/bookmarks/_index.html.erb
enju_bookmark-0.1.2.pre app/views/bookmarks/_index.html.erb
enju_bookmark-0.1.1 app/views/bookmarks/_index.html.erb
enju_bookmark-0.1.0.pre app/views/bookmarks/_index.html.erb
enju_bookmark-0.1.0 app/views/bookmarks/_index.html.erb
enju_bookmark-0.0.22 app/views/bookmarks/_index.html.erb