<%= object.select :workouts, Workout.select(:category, :group, :sub_group).distinct.map { |w| [group_category(w.group, w.sub_group, w.category), w.category] }, { include_blank: "Ejercicios:" }, class: "workout-selector form-control", data: { routine: object.object.id } %> | S | R | Carga | Nota | <% index = 0 %> <%= object.fields_for :routine_workouts do |rw| %> <%= render "plans/routines/workout_fields", child: rw, routine_id: object.object.id, idx: index %> <% index += 1 %> <% end %>
---|