Sha256: 53e6e0abc89242097ba22c068d3d5f6036da7275e865dde5ecf4a623fd0baf02

Contents?: true

Size: 806 Bytes

Versions: 3

Compression:

Stored size: 806 Bytes

Contents

<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>
    <th></th>
  </tr>

<%- @checked_items.each_with_index do |checked_item, i| -%>
  <tr class="line<%= cycle("0", "1") -%>">
    <td>
      <%= render 'manifestations/show_index', :manifestation => checked_item.item.manifestation -%>
    </td>
    <td><%= link_to checked_item.item.item_identifier, checked_item.item -%></td>
    <td><%= l(checked_item.due_date, :formats => :only_date) -%></td>
    <td><%= link_to t('page.destroy'), checked_item, :data => {:confirm => t('page.are_you_sure')}, :method => :delete -%></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/_checked_item.html.erb
enju_circulation-0.0.71 app/views/checked_items/_checked_item.html.erb
enju_circulation-0.0.70 app/views/checked_items/_checked_item.html.erb