mastodon/app/views/settings/preferences/show.html.haml

17 lines
854 B
Plaintext
Raw Normal View History

2016-10-14 02:28:49 +02:00
- content_for :page_title do
Preferences
2016-10-18 16:37:15 +02:00
= simple_form_for current_user, url: settings_preferences_path, html: { method: :put } do |f|
= render 'shared/error_messages', object: current_user
= f.simple_fields_for :notification_emails, current_user.settings(:notification_emails) do |ff|
= ff.input :follow, as: :boolean, wrapper: :with_label, label: 'Send e-mail when someone follows you'
= ff.input :reblog, as: :boolean, wrapper: :with_label, label: 'Send e-mail when someone reblogs your status'
= ff.input :favourite, as: :boolean, wrapper: :with_label, label: 'Send e-mail when someone favourites your status'
= ff.input :mention, as: :boolean, wrapper: :with_label, label: 'Send e-mail when someone mentions you'
2016-10-14 02:28:49 +02:00
.actions
2016-10-18 16:37:15 +02:00
= f.button :button, 'Save changes', type: :submit
2016-10-14 02:28:49 +02:00
.form-footer= render "settings/shared/links"