Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_email_settings.html.haml « notifications « profiles « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd7a7ced1d4343e5ad7842ba66f4e83cd36aaa79 (plain)
1
2
3
4
5
6
7
- form = local_assigns.fetch(:form)
.form-group
  .js-notification-email-listbox-input{ data: { label: _('Notification Email'), name: 'user[notification_email]', emails: @user.public_verified_emails.to_json, empty_value_text: _('Use primary email (%{email})') % { email: @user.email }, value: @user.notification_email, disabled: local_assigns.fetch(:email_change_disabled, nil) } }
  .help-block
    = local_assigns.fetch(:help_text, nil)
.form-group
  = form.gitlab_ui_checkbox_component :email_opted_in, _('Receive product marketing emails')