Created
June 28, 2011 03:39
-
-
Save dlikhten/1050441 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
<%- semantic_form_for(@doctor) do |form| -%> | |
<!-- if i comment this one out, the second will show --> | |
<%- form.semantic_fields_for :user_roles do |role_form| -%> | |
<%- role_form.semantic_fields_for :user do |user_form| -%> | |
<%= user_form.input(:email) %> | |
<%- end -%> | |
<%- end -%> | |
<!-- this will not render unless the prev is commented out --> | |
<%- form.semantic_fields_for :npi_record do |npi_form| -%> | |
<%= npi_form.input(:npi_number) %> | |
<%- end -%> | |
<%- end -%> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment