<h1 class="page-header">スラッシュリーディング</h1>
<div class="panel panel-inverse">
  <div class="panel-heading">
  </div>
  <div class="panel-body">
      <div class="panel-toolbar">
        <div class="btn-group m-r-5 m-b-5">
          <%= link_to '編集', edit_admin_exercise_path(@exercise), class: 'btn btn-primary' %>
          <%= link_to '一覧へ戻る', admin_exercises_path, class: 'btn btn-default' %>
        </div>
      </div>

    <table class="table">
      <tr>
        <th>クラス名</th>
        <td><%= @exercise.group.name %></td>
      </tr>
      <tr>
        <th>タイトル</th>
        <td><%= @exercise.title %></td>
      </tr>
      <tr>
        <th>解説付き問題画像名</th>
        <td><%= link_to @exercise.comment_file, @exercise.file_exercise_path("comment_file") %></td>
      </tr>
      <tr>
        <th>解説なし問題画像名</th>
        <td><%= link_to @exercise.question_file, @exercise.file_exercise_path("question_file") %></td>
      </tr>
      <tr>
        <th>区切りあり音声ファイル</th>
        <td><%= link_to @exercise.pause_file, @exercise.file_exercise_path("pause_file") if @exercise.pause_file.present? %></td>
      </tr>
      <tr>
        <th>区切りなし音声ファイル</th>
        <td><%= link_to @exercise.voice_file, @exercise.file_exercise_path("voice_file") if @exercise.voice_file.present? %></td>
      </tr>
      <tr>
        <th>公開週</th>
        <td><%= display_publish_week @exercise.published_week %></td>
      </tr>
    </table>
  </div>
</div>
