Sha256: 086ef77c180454f5114973738944cd6f36f49c3ac54c66812c0f17a99e797ef8

Contents?: true

Size: 1.24 KB

Versions: 10

Compression:

Stored size: 1.24 KB

Contents

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

<table class="index">
  <tr>
    <th><%= t('activerecord.attributes.user_reserve_stat.start_date') -%></th>
    <th><%= t('activerecord.attributes.user_reserve_stat.end_date') -%></th>
    <th><%= t('activerecord.attributes.user_reserve_stat.state') -%></th>
    <th></th>
  </tr>

<%- @user_reserve_stats.each do |user_reserve_stat| -%>
  <tr class="line<%= cycle("0", "1") -%>">
    <td><%= l(user_reserve_stat.start_date) -%></td>
    <td><%= l(user_reserve_stat.end_date) -%></td>
    <td><%= user_reserve_stat.state -%></td>
    <td>
      <%= link_to t('page.show'), user_reserve_stat -%>
      <%= link_to t('page.edit'), edit_user_reserve_stat_path(user_reserve_stat) -%>
      <%= link_to t('page.destroy'), user_reserve_stat, :data => {:confirm => t('page.are_you_sure')}, :method => :delete -%>
    </td>
  </tr>
<%- end -%>
</table>

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

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

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
enju_circulation-0.0.67 app/views/user_reserve_stats/index.html.erb
enju_circulation-0.0.66 app/views/user_reserve_stats/index.html.erb
enju_circulation-0.0.65 app/views/user_reserve_stats/index.html.erb
enju_circulation-0.0.64 app/views/user_reserve_stats/index.html.erb
enju_circulation-0.0.63 app/views/user_reserve_stats/index.html.erb
enju_circulation-0.0.62 app/views/user_reserve_stats/index.html.erb
enju_circulation-0.0.61 app/views/user_reserve_stats/index.html.erb
enju_circulation-0.0.60 app/views/user_reserve_stats/index.html.erb
enju_circulation-0.0.59 app/views/user_reserve_stats/index.html.erb
enju_circulation-0.0.58 app/views/user_reserve_stats/index.html.erb