logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

show.html.haml (1267B)


  1. - content_for :page_title do
  2. = t('settings.notifications')
  3. = simple_form_for current_user, url: settings_notifications_path, html: { method: :put } do |f|
  4. = render 'shared/error_messages', object: current_user
  5. .fields-group
  6. = f.simple_fields_for :notification_emails, hash_to_object(current_user.settings.notification_emails) do |ff|
  7. = ff.input :follow, as: :boolean, wrapper: :with_label
  8. = ff.input :follow_request, as: :boolean, wrapper: :with_label
  9. = ff.input :reblog, as: :boolean, wrapper: :with_label
  10. = ff.input :favourite, as: :boolean, wrapper: :with_label
  11. = ff.input :mention, as: :boolean, wrapper: :with_label
  12. .fields-group
  13. = f.simple_fields_for :notification_emails, hash_to_object(current_user.settings.notification_emails) do |ff|
  14. = ff.input :digest, as: :boolean, wrapper: :with_label
  15. .fields-group
  16. = f.simple_fields_for :interactions, hash_to_object(current_user.settings.interactions) do |ff|
  17. = ff.input :must_be_follower, as: :boolean, wrapper: :with_label
  18. = ff.input :must_be_following, as: :boolean, wrapper: :with_label
  19. = ff.input :must_be_following_dm, as: :boolean, wrapper: :with_label
  20. .actions
  21. = f.button :button, t('generic.save_changes'), type: :submit