Sha256: fd77f4f36f3d41fe93e2271c5ee4ba6256f05304a34f82559314443f3be26b85

Contents?: true

Size: 832 Bytes

Versions: 3

Compression:

Stored size: 832 Bytes

Contents

<h3><%= t('checked_item.previous_checkout') -%></h3>

<table class="table table-striped index">
  <tr>
    <th class="checked_item_title"><%= t('page.title') -%></th>
    <th><%= t('activerecord.attributes.item.item_identifier') -%></th>
    <th><%= t('activerecord.attributes.checkout.due_date') -%></th>
  </tr>

  <%- @basket.user.checkouts.not_returned.each_with_index do |checkout, i| -%>
    <tr class="line<%= cycle("0", "1") -%>">
      <td>
        <%= render 'manifestations/show_index', :manifestation => checkout.item.manifestation -%>
        <%= render 'manifestations/holding', :manifestation => checkout.item.manifestation -%>
      </td>
      <td><%= link_to checkout.item.item_identifier, checkout.item -%></td>
      <td><%= l(checkout.due_date, :formats => :only_date) -%></td>
    </tr>
  <%- end -%>
</table>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
enju_circulation-0.1.0.pre app/views/checked_items/_checkout.html.erb
enju_circulation-0.0.71 app/views/checked_items/_checkout.html.erb
enju_circulation-0.0.70 app/views/checked_items/_checkout.html.erb