Sha256: e866308601e5668ab6bc4623279f64c64ff127a1a4b88de369798cf51764523e

Contents?: true

Size: 1.34 KB

Versions: 6

Compression:

Stored size: 1.34 KB

Contents

<div id="content_detail" class="ui-corner-all">
<h1 class="title"><%= t('page.listing', :model => t('activerecord.models.own')) -%></h1>
<div id="content_list">

<table class="table table-striped index">
  <tr>
    <th><%= t('activerecord.models.patron') -%></th>
    <th><%= t('activerecord.models.item') -%></th>
    <th><%= t('activerecord.models.manifestation') -%></th>
    <th></th>
  </tr>

<%- @owns.each do |own| -%>
  <tr class="line<%= cycle("0", "1") -%>">
    <td><%= link_to own.patron.full_name, own.patron -%></td>
    <td>
      <%- if own.item.item_identifier.blank? -%>
        (<%= link_to 'no number', own.item -%>)
      <%- else -%>
        <%= link_to own.item.item_identifier, own.item -%>
      <%- end -%>
    </td>
    <td>
      <%= render 'manifestations/show_index', :manifestation => own.item.manifestation -%>
    </td>
    <td>
      <%- if can? :destroy, own -%>
        <%= link_to t('page.show'), own -%>
        <%= link_to t('page.destroy'), own, :data => {:confirm => t('page.are_you_sure')}, :method => :delete -%>
      <%- end -%>
    </td>
  </tr>
<%- end -%>
</table>

<%= will_paginate(@owns) -%>
</div>
</div>

<div id="submenu" class="ui-corner-all">
  <ul>
    <%- if can? :create, Own -%>
      <li><%= link_to t('page.new', :model => t('activerecord.models.own')), new_own_path -%></li>
    <%- end -%>
  </ul>
</div>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
enju_biblio-0.0.9 app/views/owns/index.html.erb
enju_biblio-0.0.8 app/views/owns/index.html.erb
enju_biblio-0.0.7 app/views/owns/index.html.erb
enju_biblio-0.0.6 app/views/owns/index.html.erb
enju_biblio-0.0.5 app/views/owns/index.html.erb
enju_biblio-0.0.4 app/views/owns/index.html.erb