Skip to content

Instantly share code, notes, and snippets.

@jmercedes
Created January 16, 2013 18:55
Show Gist options
  • Save jmercedes/4809f75ba312024bcd03 to your computer and use it in GitHub Desktop.
Save jmercedes/4809f75ba312024bcd03 to your computer and use it in GitHub Desktop.
<% for schedule in @doctor.schedules.in_groups_of(7) %>
<%= fields_for "doctor[schedule_attributes][]", schedule do |schedule_form| %>
<% schedule_form.text_field :day, value: @days[0] %>
<%= schedule_form.text_field :hour, value: "8:00" %>
<% end %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment