Helps you to create forms with localized fields using Mongoid.
Add this line to your application's Gemfile:
gem 'localized_fields'
And then execute:
bundle
Or install it yourself as:
gem install localized_fields
Localized Fields uses
app/models/post.rb
class Post
include Mongoid::Document
field :title, localize: true
end
app/controllers/posts_controller.rb
def new
@post = Post.new
end
app/view/posts/_form.html.erb
<%= form_for @post do |f| %>
<%= f.localized_fields do |localized_fields| %>
<%= localized_fields.label :title %>
<%= localized_fields.text_field :title %>
<% end %>
<% end %>
app/view/posts/_form.html.erb
<%= form_for @post do |f| %>
<%= f.localized_fields :title do |localized_fields| %>
<%= localized_fields.label :en %>
<%= localized_fields.text_field :en %>
<%= localized_fields.label :pt %>
<%= localized_fields.text_field :pt %>
<% end %>
<% end %>
- actionpack ~> 4.0.0
- mongoid (master)
Localized Fields is tested against Ruby 1.9.3 and 2.0.0
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
MIT License. Copyright 2012 Tiago Rafael Godinho