Skip to content

Instantly share code, notes, and snippets.

@nicolasblanco
Last active August 24, 2017 19:23
Show Gist options
  • Save nicolasblanco/0d50cd7aecd5f18284c94f3a54f97d38 to your computer and use it in GitHub Desktop.
Save nicolasblanco/0d50cd7aecd5f18284c94f3a54f97d38 to your computer and use it in GitHub Desktop.
_form.erb
<%= fields_for "product[name_translations]", OpenStruct.new(product.name_translations) do |translation_fields| %>
<% I18n.available_locales.each do |locale| %>
<div class="field">
<%= translation_fields.label locale, "Name #{locale}" %>
<%= translation_fields.text_field locale %>
</div>
<% end %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment