Sha256: b10a35391f9c1787d72e779c6f65943327e0510d67640447fd0d82922e376dc7

Contents?: true

Size: 1.9 KB

Versions: 36

Compression:

Stored size: 1.9 KB

Contents

<div data-role="header">
<h1 class="title"><%= t('page.listing', model: t('activerecord.models.item')) -%></h1>
</div>
<div data-role="content">
<%= render 'manifestations/title', manifestation: @manifestation if @manifestation -%>
<div data-role="detail">
<%= form_for :items, url: items_path, 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 -%>

<table class="table table-striped index">
  <tr>
    <th><%= t('activerecord.attributes.item.item_identifier') -%></th>
    <th><%= t('activerecord.attributes.item.call_number') -%></th>
    <th><%= t('activerecord.models.manifestation') -%></th>
    <th><%= t('activerecord.models.library') -%></th>
    <th><%= t('activerecord.models.shelf') -%></th>
    <th><%= t('activerecord.models.circulation_status') -%></th>
    <%- if user_signed_in? -%>
      <th></th>
    <%- end -%>
  </tr>

  <%- @items.each do |item| -%>
    <tr class="line<%= cycle("0", "1") -%>">
      <td>
        <%- unless item.item_identifier? -%>
          (<%= link_to t('item.no_number'), item -%>)
        <%- else -%>
          <%= link_to item.item_identifier, item -%>
        <%- end -%>
      </td>
      <td><%= item.call_number -%></td>
      <td>
        <%= render 'manifestations/show_index', manifestation: item.manifestation -%>
      </td>
      <td><%= link_to item.shelf.library.display_name.localize, item.shelf.library -%></td>
      <td><%= link_to item.shelf_display_name.localize, item.shelf -%></td>
      <td><%= item.circulation_status.display_name.localize -%></td>
      <%- if policy(item).destroy? -%>
        <td><%= link_to t('page.edit'), edit_item_path(item) -%></td>
      <%- end -%>
  </tr>
<%- end -%>
</table>

<%= paginate(@items) -%>
</div>
</div>

Version data entries

36 entries across 35 versions & 2 rubygems

Version Path
enju_biblio-0.3.18 app/views/items/index.html+phone.erb
enju_biblio-0.3.17 app/views/items/index.html+phone.erb
enju_biblio-0.3.16 app/views/items/index.html+phone.erb
enju_biblio-0.3.15 app/views/items/index.html+phone.erb
enju_biblio-0.3.14 app/views/items/index.html+phone.erb
enju_biblio-0.3.13 app/views/items/index.html+phone.erb
enju_biblio-0.3.12 app/views/items/index.html+phone.erb
enju_biblio-0.3.11 app/views/items/index.html+phone.erb
enju_biblio-0.3.10 app/views/items/index.html+phone.erb
enju_biblio-0.3.10.rc.3 app/views/items/index.html+phone.erb
enju_biblio-0.3.10.rc.2 app/views/items/index.html+phone.erb
enju_biblio-0.3.10.rc.1 app/views/items/index.html+phone.erb
enju_biblio-0.3.9 app/views/items/index.html+phone.erb
enju_biblio-0.3.8 app/views/items/index.html+phone.erb
enju_biblio-0.3.7 app/views/items/index.html+phone.erb
enju_biblio-0.3.6 app/views/items/index.html+phone.erb
enju_biblio-0.3.5 app/views/items/index.html+phone.erb
enju_biblio-0.3.4 app/views/items/index.html+phone.erb
enju_biblio-0.3.3 app/views/items/index.html+phone.erb
enju_biblio-0.3.2 app/views/items/index.html+phone.erb