<h1>Create New Profile</h1>

<%= link_to("Create New", new_intern_path) %>
<div class="none">
<table width="100%">
<br>
<br>
  <tr>
    <th>Name</th>
    <th>Hours Needed</th>
    <th>School</th>
    <th>Course</th>
  </tr>
  <% @interns.each do |intern| %>
    <tr>
      <td><%= intern.first_name %> <%= intern.last_name %></td>
      <td><%= intern.hours_needed %></td>
      <td><%= intern.school %></td>
      <td><%= intern.course %></td>
      <td>
      <br>
        <%= link_to "Show", intern_path(intern.id) %>
      </td>
    </tr>
  <% end %>
</table>
</div>
<br>
<a href="/">Back Home</a>