Sha256: 620f369fb74c5768d345931ae1f79e2bc589dcff357bcc9d3abcee024af17dc2

Contents?: true

Size: 1.85 KB

Versions: 11

Compression:

Stored size: 1.85 KB

Contents

<div id="content_detail" class="ui-corner-all ui-widget-content">
<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: bookmarks_path(user_id: @user.username), 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.profile -%></td>
    <td>
      <%= render 'manifestations/show_index', manifestation: bookmark.manifestation -%>
    </td>
    <td><%= l(bookmark.created_at) -%></td>
    <td>
      <%- if policy(bookmark).destroy? -%>
        <%= 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 ui-widget-content">
  <%- 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

11 entries across 11 versions & 1 rubygems

Version Path
enju_bookmark-0.3.2 app/views/bookmarks/_index_user.html.erb
enju_bookmark-0.3.1 app/views/bookmarks/_index_user.html.erb
enju_bookmark-0.3.0 app/views/bookmarks/_index_user.html.erb
enju_bookmark-0.3.0.beta.1 app/views/bookmarks/_index_user.html.erb
enju_bookmark-0.2.2 app/views/bookmarks/_index_user.html.erb
enju_bookmark-0.2.1 app/views/bookmarks/_index_user.html.erb
enju_bookmark-0.2.0 app/views/bookmarks/_index_user.html.erb
enju_bookmark-0.2.0.beta.5 app/views/bookmarks/_index_user.html.erb
enju_bookmark-0.2.0.beta.3 app/views/bookmarks/_index_user.html.erb
enju_bookmark-0.2.0.beta.2 app/views/bookmarks/_index_user.html.erb
enju_bookmark-0.2.0.beta.1 app/views/bookmarks/_index_user.html.erb