Simple Form Localized Input
Simple Form custom input which renders a field for multiple locales in one form. Designed to be used with Mongoid.
Installation
Add this line to your application's Gemfile:
gem 'simple_form_localized_input'
And then execute:
$ bundle
Or install it yourself as:
$ gem install simple_form_localized_input
Usage
In your model:
class MyModel
include Mongoid::Document
field :title, type: String, localize: true
end
In your simple form:
= form.localized_input :title
This works with inputs of various types, and you can pass options to an input as usual.
Contributing
- Fork it ( https://github.com/tomasc/simple_form_localized_input/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request