Sha256: af2f054cc431dbad9284695e46992d68621d43c09ce744dcdc432ea0d2b155b6

Contents?: true

Size: 1.23 KB

Versions: 45

Compression:

Stored size: 1.23 KB

Contents

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

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

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

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

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

Version data entries

45 entries across 45 versions & 1 rubygems

Version Path
enju_circulation-0.1.0.pre41 app/views/user_checkout_stats/index.html.erb
enju_circulation-0.1.0.pre40 app/views/user_checkout_stats/index.html.erb
enju_circulation-0.1.0.pre39 app/views/user_checkout_stats/index.html.erb
enju_circulation-0.1.0.pre38 app/views/user_checkout_stats/index.html.erb
enju_circulation-0.1.0.pre37 app/views/user_checkout_stats/index.html.erb