<h1>Class List</h1>

<table>
  <thead>
    <tr>
      <th>ID Number</th>
      <th>Name</th>
      <th>Year Level</th>
      <th>Course</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @students.each do |student| %>
      <tr>
        <td><%= student.idnumber %></td>
        <td><%= student.name %></td>
        <td><%= student.yearlevel %></td>
        <td><%= student.course %></td>
      </tr>
    <% end %>
  </tbody>
</table>