Sha256: c5d16ded10ce520e069b7dd90ee9e37ec8905d398429925b84c7f8194e82b9c6
Contents?: true
Size: 1.42 KB
Versions: 1
Compression:
Stored size: 1.42 KB
Contents
<div id="content_detail" class="ui-corner-all ui-widget-content"> <h1 class="title"><%= t('page.listing', :model => t('activerecord.models.checkout_stat_has_user')) -%></h1> <div id="content_list"> <table class="table table-striped index"> <tr> <th><%= t('activerecord.models.user_checkout_stat') -%></th> <th><%= t('activerecord.models.user') -%></th> <th><%= t('activerecord.attributes.checkout_stat_has_user.checkouts_count') -%></th> </tr> <%- @checkout_stat_has_users.each do |checkout_stat_has_user| -%> <tr class="line<%= cycle("0", "1") -%>"> <td><%= link_to checkout_stat_has_user.user_checkout_stat.id, checkout_stat_has_user.user_checkout_stat -%></td> <td><%= link_to checkout_stat_has_user.user.username, checkout_stat_has_user.user -%></td> <td><%= checkout_stat_has_user.checkouts_count -%></td> <td><%= link_to t('page.show'), checkout_stat_has_user -%></td> <td><%= link_to t('page.edit'), edit_checkout_stat_has_user_path(checkout_stat_has_user) -%></td> <td><%= link_to t('page.destroy'), checkout_stat_has_user, :data => {:confirm => t('page.are_you_sure')}, :method => :delete -%></td> </tr> <%- end -%> </table> <%= paginate(@checkout_stat_has_users) -%> </div> </div> <div id="submenu" class="ui-corner-all ui-widget-content"> <ul> <li><%= link_to t('page.new', :model => t('activerecord.models.checkout_stat_has_user')), new_checkout_stat_has_user_path -%></li> </ul> </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
enju_circulation-0.1.0.pre36 | app/views/checkout_stat_has_users/index.html.erb |