Guest User

Untitled

a guest
Jun 21st, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. ## _form.html.haml
  2.  
  3. - f.fields_for :sk, @article.sk do |sk|
  4. Title:
  5. = sk.text_field :title
  6. Description:
  7. = sk.text_area :description
  8.  
  9. ## article.rb
  10.  
  11. def sk= attrs
  12. set_translations :sk => attrs
  13. end
  14.  
  15. def sk
  16. globalize_translations.find :first, :conditions => {:locale => 'sk'}
  17. end
Add Comment
Please, Sign In to add comment