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.
 
 
 
 

49 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,
  7. collection: I18n.available_locales,
  8. wrapper: :with_label,
  9. include_blank: false,
  10. label_method: lambda { |locale| human_locale(locale) },
  11. selected: I18n.locale
  12. = f.input :filtered_languages,
  13. collection: I18n.available_locales,
  14. wrapper: :with_label,
  15. include_blank: false,
  16. label_method: lambda { |locale| human_locale(locale) },
  17. required: false,
  18. as: :check_boxes,
  19. collection_wrapper_tag: 'ul',
  20. item_wrapper_tag: 'li'
  21. = 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'
  22. .fields-group
  23. = f.simple_fields_for :notification_emails, hash_to_object(current_user.settings.notification_emails) do |ff|
  24. = ff.input :follow, as: :boolean, wrapper: :with_label
  25. = ff.input :follow_request, as: :boolean, wrapper: :with_label
  26. = ff.input :reblog, as: :boolean, wrapper: :with_label
  27. = ff.input :favourite, as: :boolean, wrapper: :with_label
  28. = ff.input :mention, as: :boolean, wrapper: :with_label
  29. = ff.input :digest, as: :boolean, wrapper: :with_label
  30. .fields-group
  31. = f.simple_fields_for :interactions, hash_to_object(current_user.settings.interactions) do |ff|
  32. = ff.input :must_be_follower, as: :boolean, wrapper: :with_label
  33. = ff.input :must_be_following, as: :boolean, wrapper: :with_label
  34. .fields-group
  35. = f.input :setting_boost_modal, as: :boolean, wrapper: :with_label
  36. .fields-group
  37. = f.input :setting_auto_play_gif, as: :boolean, wrapper: :with_label
  38. .actions
  39. = f.button :button, t('generic.save_changes'), type: :submit