Sha256: 528bcdb6a1e3199db052ffd66136c680db111b438839f1cf338df597dbe80c32
Contents?: true
Size: 812 Bytes
Versions: 2
Compression:
Stored size: 812 Bytes
Contents
<h3><%= t('checked_item.previous_checkout') -%></h3> <table class="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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
enju_message-0.1.11 | app/views/checked_items/_checkouts.html.erb |
enju_message-0.0.25 | app/views/checked_items/_checkouts.html.erb |