<% content_for :title do %>TOEIC TEST 3000<% end %>

<ol class="breadcrumb pull-right">
  <li><%= link_to 'TOP', top_path %></li>
  <li class="active">TOEIC TEST 3000</li>
</ol>

<h1 class="page-header">TOEIC TEST 3000</h1>
<div class="panel panel-inverse">
  <div class="panel-heading">
    <h4 class="panel-title fl">TOEIC TEST 3000</h4>
    <h4 class="panel-title pull-right" style="font-size: 10px;">「Safari」をご利用の方は「”iBookで開く”」を選択して下さい。</h4>
  </div>
  <div class="panel-body">
    <table class="table table-hover">
      <thead>
        <tr>
          <th>TITLE</th>
          <% if @user.group_id_array.include? 2 %>
          <th>Vocabulary Quiz</th>
          <th>Answers</th>
          <% end %>
        </tr>
      </thead>
      <tbody>
        <% @tests.each do |test| %>
        <tr>
          <td><%= link_to test.title, test.file_path, :target => '_blank' %></td>
          <% if @user.group_id_array.include? 2 %>
          <td><%= link_to test.question_title, test.question_path, :target => '_blank' %></td>
          <td><%= link_to test.answer_title, test.answer_path, :target => '_blank' %></td>
          <% end %>
        </tr>
        <% end %>
      </tbody>
    </table>
    <div class="text-center"><%= paginate @tests %></div>
  </div>
</div>


