<h1 class="page-header">会員情報</h1>
<div class="panel panel-inverse">
  <div class="panel-heading">
    <h4 class="panel-title fl">CSVアップロード完了</h4>
  </div>
  <div class="panel-toolbar">
    <div class="btn-group m-r-5 m-b-5">
      <%= link_to '一覧へ戻る', admin_users_path, class: 'btn btn-default' %>
    </div>
  </div>
  <div class="panel-body">
    <table class="table">
      <tr>
        <th>処理件数</th>
        <td><%= @ret[:count].to_s %>件</td>
      </tr>
      <tr>
        <th>取込件数</th>
        <td><%= @ret[:register_count].to_s %>件</td>
      </tr>
      <tr>
        <th>スキップ件数</th>
        <td><%= @ret[:skip_count].to_s %>件</td>
      </tr>
    </table>
    <% if @ret[:skip_count] > 0 %>
        <h5 style="margin-left: 5px;">スキップ詳細</h5>
        <hr style="marting-top: 10px;">
          <table class="table">
            <tr>
              <th>スキップ理由</th>
              <th>行数</th>
              <th>会員番号</th>
              <th>名前</th>
              <th>クラス</th>
              <th>メールアドレス</th>
              <th>スタート日</th>
              <th>終了日</th>
            </tr>
            <% @ret[:skip].each do |row| %>
              <tr>
                <td style="color: #d9534f;"><%= row[:reason] %></td>
                <td><%= row[:number] %></td>
                <td><%= row[:member_id] %></td>
                <td><%= row[:name] %></td>
                <td><%= row[:group_name] %></td>
                <td><%= row[:email] %></td>
                <td><%= row[:start] %></td>
                <td><%= row[:finish] %></td>
              </tr>
            <% end %>
          </table>
      <% end %>
  </div>
</div>
