<% content_for :title do %>録音講義<% end %>

<ol class="breadcrumb pull-right">
  <li><%= link_to 'TOP', top_path %></li>
  <li class="active">録音講義</li>
</ol>

<h1 class="page-header">録音講義</h1>
<div class="panel panel-inverse">
  <div class="panel-heading">
    <h4 class="panel-title fl">録音講義</h4>
    <h4 class="panel-title pull-right" style="font-size: 10px;">翌水曜日更新</h4>
  </div>
  <div class="panel-body">
    <table class="table table-hover">
      <thead>
      <tr>
        <th>CLASS</th>
        <th>TITLE</th>
      </tr>
      </thead>
      <tbody>
      <% @lecture_recordings.each do |lecture_recording| %>
        <tr>
          <td><%= lecture_recording.group.name %></td>
          <td><%= link_to lecture_recording.title, lecture_recording_path(lecture_recording) %></td>
        </tr>
      <% end %>
      </tbody>
    </table>
  </div>
</div>
