<% 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>
  </div>
  <div class="panel-body">
    <table class="table table-hover">
      <thead>
      <tr>
        <th>CLASS</th>
        <th>TITLE</th>
      </tr>
      </thead>
      <tbody>
        <% @syllabuses.each do |s| %>
        <tr>
          <td><%= s.group.name %></td>
          <td><%= link_to s.title, s.file_path, :target => '_blank' %></td>
        </tr>
        <% end %>
      </tbody>
  </table>
  </div>
</div>
