Sha256: 60b9aa84fca11fa13dd6cb51edc9bb96ec2581e9c572a4a7762ca194139ba6aa

Contents?: true

Size: 1.07 KB

Versions: 6

Compression:

Stored size: 1.07 KB

Contents

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

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

<%- @creates.each do |create| -%>
  <tr class="line<%= cycle("0", "1") -%>">
    <td><%= link_to create.patron.full_name, create.patron -%></td>
    <td><%= link_to create.work.original_title, create.work -%></td>
    <td>
      <%- if can? :destroy, create -%>
        <%= link_to t('page.show'), create -%>
        <%= link_to t('page.destroy'), create, :data => {:confirm => t('page.are_you_sure')}, :method => :delete -%>
      <%- end -%>
    </td>
  </tr>
<%- end -%>
</table>

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

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

Version data entries

6 entries across 6 versions & 1 rubygems

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