show.html.haml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435
  1. - content_for :page_title do
  2. = t('settings.notifications')
  3. - content_for :heading_actions do
  4. = button_tag t('generic.save_changes'), class: 'button', form: 'edit_notification'
  5. = simple_form_for current_user, url: settings_preferences_notifications_path, html: { method: :put, id: 'edit_notification' } do |f|
  6. = render 'shared/error_messages', object: current_user
  7. %h4= t 'notifications.email_events'
  8. %p.hint= t 'notifications.email_events_hint'
  9. .fields-group
  10. = f.simple_fields_for :notification_emails, hash_to_object(current_user.settings.notification_emails) do |ff|
  11. = ff.input :follow, as: :boolean, wrapper: :with_label
  12. = ff.input :follow_request, as: :boolean, wrapper: :with_label
  13. = ff.input :reblog, as: :boolean, wrapper: :with_label
  14. = ff.input :favourite, as: :boolean, wrapper: :with_label
  15. = ff.input :mention, as: :boolean, wrapper: :with_label
  16. = ff.input :report, as: :boolean, wrapper: :with_label if current_user.can?(:manage_reports)
  17. = ff.input :appeal, as: :boolean, wrapper: :with_label if current_user.can?(:manage_appeals)
  18. = ff.input :pending_account, as: :boolean, wrapper: :with_label if current_user.can?(:manage_users)
  19. = ff.input :trending_tag, as: :boolean, wrapper: :with_label if current_user.can?(:manage_taxonomies)
  20. .fields-group
  21. = f.input :setting_always_send_emails, as: :boolean, wrapper: :with_label
  22. %h4= t 'notifications.other_settings'
  23. .fields-group
  24. = f.simple_fields_for :interactions, hash_to_object(current_user.settings.interactions) do |ff|
  25. = ff.input :must_be_follower, as: :boolean, wrapper: :with_label
  26. = ff.input :must_be_following, as: :boolean, wrapper: :with_label
  27. = ff.input :must_be_following_dm, as: :boolean, wrapper: :with_label