<table class="std_format_table">
    <thead>
      <th>Name</th>
      <th>Muscle Group</th>
    </thead>
    <% @exercises.each do |e| %>
      <tr>
        <td><%= link_to e.name, [:admin, e] %></td>
        <td><%= e.muscle.name %></td>
        <td><%= link_to 'Edit', [:edit_admin, e] %></td>
        <td><%= link_to "Destroy", [:admin, e], :confirm => 'Are you sure?', :method => :delete %></td>
      </tr>
    <% end %>
  </table>
  <%= vspacer_tag %>
  <%= will_paginate @exercises %>
  <p><%= link_to 'Add Exercise',new_admin_exercise_path %></p>