Sha256: 1a8a0d8bd84be6074529f547a82af3003fd2fbf62e00b907b9446dd7dd1eec33

Contents?: true

Size: 1.63 KB

Versions: 22

Compression:

Stored size: 1.63 KB

Contents

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

<table class="table table-striped index">
  <tr>
    <th>ID</th>
    <th><%= t('activerecord.attributes.patron_import_file.patron_import_file_name') -%></th>
    <th><%= t('activerecord.attributes.patron_import_file.executed_at') -%></th>
    <th><%= t('activerecord.models.user') -%></th>
    <th><%= t('activerecord.attributes.patron_import_file.edit_mode') -%></th>
    <th><%= t('activerecord.attributes.patron_import_file.state') -%></th>
    <th></th>
  </tr>

<%- @patron_import_files.each do |patron_import_file| -%>
  <tr class="line<%= cycle("0", "1") -%>">
    <td><%= link_to patron_import_file.id, patron_import_file -%></td>
    <td><%= link_to patron_import_file.patron_import_file_name, patron_import_file -%></td>
    <td><%= l(patron_import_file.executed_at) if patron_import_file.executed_at -%></td>
    <td><%= link_to patron_import_file.user.username, patron_import_file.user -%></td>
    <td><%= patron_import_file.edit_mode -%></td>
    <td><%= localized_state(patron_import_file.state) -%></td>
    <td>
      <%= link_to t('page.show'), patron_import_file -%>
      <%= link_to t('page.destroy'), patron_import_file, :data => {:confirm => t('page.are_you_sure')}, :method => :delete -%>
    </td>
  </tr>
<%- end -%>
</table>

<%= paginate(@patron_import_files) -%>
</div>
</div>

<div id="submenu" class="ui-corner-all">
  <ul>
    <li><%= link_to t('page.new', :model => t('activerecord.models.patron_import_file')), new_patron_import_file_path -%></li>
  </ul>
</div>

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
enju_biblio-0.1.0.pre42 app/views/patron_import_files/index.html.erb
enju_biblio-0.1.0.pre41 app/views/patron_import_files/index.html.erb
enju_biblio-0.1.0.pre40 app/views/patron_import_files/index.html.erb
enju_biblio-0.1.0.pre39 app/views/patron_import_files/index.html.erb
enju_biblio-0.1.0.pre38 app/views/patron_import_files/index.html.erb
enju_biblio-0.1.0.pre37 app/views/patron_import_files/index.html.erb
enju_biblio-0.1.0.pre36 app/views/patron_import_files/index.html.erb
enju_biblio-0.1.0.pre35 app/views/patron_import_files/index.html.erb
enju_biblio-0.1.0.pre34 app/views/patron_import_files/index.html.erb
enju_biblio-0.1.0.pre33 app/views/patron_import_files/index.html.erb
enju_biblio-0.1.0.pre32 app/views/patron_import_files/index.html.erb
enju_biblio-0.1.0.pre31 app/views/patron_import_files/index.html.erb
enju_biblio-0.1.0.pre30 app/views/patron_import_files/index.html.erb
enju_biblio-0.1.0.pre29 app/views/patron_import_files/index.html.erb
enju_biblio-0.1.0.pre28 app/views/patron_import_files/index.html.erb
enju_biblio-0.1.0.pre27 app/views/patron_import_files/index.html.erb
enju_biblio-0.1.0.pre26 app/views/patron_import_files/index.html.erb
enju_biblio-0.1.0.pre25 app/views/patron_import_files/index.html.erb
enju_biblio-0.1.0.pre24 app/views/patron_import_files/index.html.erb
enju_biblio-0.1.0.pre23 app/views/patron_import_files/index.html.erb