Sha256: b885884cdddf8bb5b949faefad4c9c5c86c519d41d25c547a6acc6a05f5c88d2

Contents?: true

Size: 1.04 KB

Versions: 2

Compression:

Stored size: 1.04 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="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, :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

2 entries across 2 versions & 1 rubygems

Version Path
enju_biblio-0.0.2 app/views/creates/_index.html.erb
enju_biblio-0.0.1 app/views/creates/_index.html.erb