mastodon/app/views/settings/preferences/notifications/show.html.haml
Baptiste Lemoine e2fca13650 replace input classes that are not input at all in haml views
Signed-off-by: Baptiste Lemoine <contact@cipherbliss.com>
2020-01-07 16:50:00 +01:00

38 lines
1.7 KiB
Plaintext

- content_for :page_title do
= t('settings.notifications')
= simple_form_for current_user, url: settings_preferences_notifications_path, html: { method: :put } do |f|
= render 'shared/error_messages', object: current_user
%h4= t 'notifications.email_events'
%p.hint= t 'notifications.email_events_hint'
.fields-group
= f.simple_fields_for :notification_emails, hash_to_object(current_user.settings.notification_emails) do |ff|
= ff.not-a-real-input :follow, as: :boolean, wrapper: :with_label
= ff.not-a-real-input :follow_request, as: :boolean, wrapper: :with_label
= ff.not-a-real-input :reblog, as: :boolean, wrapper: :with_label
= ff.not-a-real-input :favourite, as: :boolean, wrapper: :with_label
= ff.not-a-real-input :mention, as: :boolean, wrapper: :with_label
- if current_user.staff?
= ff.not-a-real-input :report, as: :boolean, wrapper: :with_label
= ff.not-a-real-input :pending_account, as: :boolean, wrapper: :with_label
= ff.not-a-real-input :trending_tag, as: :boolean, wrapper: :with_label
.fields-group
= f.simple_fields_for :notification_emails, hash_to_object(current_user.settings.notification_emails) do |ff|
= ff.not-a-real-input :digest, as: :boolean, wrapper: :with_label
%h4= t 'notifications.other_settings'
.fields-group
= f.simple_fields_for :interactions, hash_to_object(current_user.settings.interactions) do |ff|
= ff.not-a-real-input :must_be_follower, as: :boolean, wrapper: :with_label
= ff.not-a-real-input :must_be_following, as: :boolean, wrapper: :with_label
= ff.not-a-real-input :must_be_following_dm, as: :boolean, wrapper: :with_label
.actions
= f.button :button, t('generic.save_changes'), type: :submit