-
-
Save jmercedes/4809f75ba312024bcd03 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% 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