Sha256: d7dff3eabecc38e57ee34dadb1a8ee86a72642bd9c406b23ad57b65b4ee8ddfe
Contents?: true
Size: 1.57 KB
Versions: 14
Compression:
Stored size: 1.57 KB
Contents
<div id="content_detail" class="ui-corner-all"> <h1 class="title"><%= t('page.showing', :model => t('activerecord.models.user_checkout_stat')) -%></h1> <div id="content_list"> <p id="notice"><%= notice %></p> <p> <strong><%= t('activerecord.attributes.user_checkout_stat.start_date') -%>:</strong> <%= l(@user_checkout_stat.start_date) -%> </p> <p> <strong><%= t('activerecord.attributes.user_checkout_stat.end_date') -%>:</strong> <%= l(@user_checkout_stat.end_date) -%> </p> <p> <strong><%= t('activerecord.attributes.user_checkout_stat.state') -%>:</strong> <%= @user_checkout_stat.state -%> </p> <p> <strong><%= t('activerecord.attributes.user_checkout_stat.note') -%>:</strong> <%= @user_checkout_stat.note -%> </p> <table class="table table-striped index"> <tr> <th><%= t('activerecord.models.user') -%></th> <th><%= t('activerecord.attributes.checkout_stat_has_user.checkouts_count') -%></th> </tr> <%- @stats.each do |stat| -%> <tr class="line<%= cycle("0", "1") -%>"> <td> <%= link_to stat.user.username, stat.user if stat.user -%> </td> <td><%= stat.checkouts_count -%></td> </tr> <%- end -%> </table> <%= paginate(@stats) -%> </div> </div> <div id="submenu" class="ui-corner-all"> <ul> <li><%= link_to t('page.edit'), edit_user_checkout_stat_path(@user_checkout_stat) -%></li> <li><%= back_to_index(flash[:page_info]) -%></li> </ul> <h4><%= t('page.export') -%></h4> <ul> <li><%= link_to 'CSV', user_checkout_stat_path(@user_checkout_stat, :format => :csv, :locale => @locale.to_s) -%></li> </ul> </div>
Version data entries
14 entries across 14 versions & 1 rubygems