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