The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

44 lines
2.1 KiB

  1. - content_for :page_title do
  2. = t('settings.preferences')
  3. = simple_form_for current_user, url: settings_preferences_path, html: { method: :put } do |f|
  4. = render 'shared/error_messages', object: current_user
  5. .fields-group
  6. = f.input :locale, collection: I18n.available_locales, wrapper: :with_label, include_blank: false, label_method: lambda { |locale| human_locale(locale) }
  7. = f.input :allowed_languages,
  8. collection: I18n.available_locales,
  9. wrapper: :with_label,
  10. include_blank: false,
  11. label_method: lambda { |locale| human_locale(locale) },
  12. required: false,
  13. as: :check_boxes,
  14. collection_wrapper_tag: 'ul',
  15. item_wrapper_tag: 'li'
  16. = f.input :setting_default_privacy, collection: Status.visibilities.keys - ['direct'], wrapper: :with_label, include_blank: false, label_method: lambda { |visibility| safe_join([I18n.t("statuses.visibilities.#{visibility}"), content_tag(:span, I18n.t("statuses.visibilities.#{visibility}_long"), class: 'hint')]) }, required: false, as: :radio_buttons, collection_wrapper_tag: 'ul', item_wrapper_tag: 'li'
  17. .fields-group
  18. = f.simple_fields_for :notification_emails, hash_to_object(current_user.settings.notification_emails) do |ff|
  19. = ff.input :follow, as: :boolean, wrapper: :with_label
  20. = ff.input :follow_request, as: :boolean, wrapper: :with_label
  21. = ff.input :reblog, as: :boolean, wrapper: :with_label
  22. = ff.input :favourite, as: :boolean, wrapper: :with_label
  23. = ff.input :mention, as: :boolean, wrapper: :with_label
  24. = ff.input :digest, as: :boolean, wrapper: :with_label
  25. .fields-group
  26. = f.simple_fields_for :interactions, hash_to_object(current_user.settings.interactions) do |ff|
  27. = ff.input :must_be_follower, as: :boolean, wrapper: :with_label
  28. = ff.input :must_be_following, as: :boolean, wrapper: :with_label
  29. .fields-group
  30. = f.input :setting_boost_modal, as: :boolean, wrapper: :with_label
  31. .fields-group
  32. = f.input :setting_auto_play_gif, as: :boolean, wrapper: :with_label
  33. .actions
  34. = f.button :button, t('generic.save_changes'), type: :submit