31 lines
851 B
Plaintext
31 lines
851 B
Plaintext
- set_meta_tags title: t('layout.users.settings_notifier')
|
|
= render 'users/base/submenu'
|
|
|
|
|
|
.container.col-md-offset-2.col-md-8
|
|
.row
|
|
p
|
|
= t('layout.settings.notifiers.notice_header', email: @user.email)
|
|
= link_to t("layout.settings.notifiers.change_email_link"), profile_settings_path
|
|
hr
|
|
|
|
= simple_form_for @user.notifier,
|
|
url: notifiers_settings_path,
|
|
wrapper: :horizontal_form,
|
|
wrapper_mappings: { boolean: :horizontal_boolean } do |f|
|
|
|
|
.row
|
|
.col-md-6
|
|
= f.input :can_notify, as: :boolean
|
|
|
|
.col-sm-offset-3.col-sm-9
|
|
h4
|
|
= t('layout.settings.notifiers.build_list_header')
|
|
- [:new_build, :new_associated_build].each do |field|
|
|
= f.input field, as: :boolean
|
|
|
|
.row
|
|
hr
|
|
= submit_button_tag
|
|
|