%= render 'admin/workout_plans/navigation' %> <%= post_wrapper_for 'Routines' do %>
| Name | Muscle Group | <% @routines.each do |r| %>||
|---|---|---|---|
| <%= r.name %> | <%= r.muscle.try(:name) || '(many)' %> | <%= link_to 'Edit', [:edit_admin, r] %> | <%= link_to "Destroy", [:admin, r], :confirm => 'Are you sure?', :method => :delete %> |
<%= link_to 'Add Routine', new_admin_routine_path %>