about summary refs log tree commit diff
path: root/app/views/settings/preferences/show.html.haml
blob: 9c73d07c5b209e7300565d647aace86cbc10a6f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- content_for :page_title do
  Preferences

= form_for current_user, url: settings_preferences_path, html: { method: :put } do |f|
  = f.fields_for :notification_emails, current_user.settings(:notification_emails) do |ff|
    .boolean-field
      = ff.check_box :follow
      = ff.label :follow, 'Send e-mail when someone follows you'
    .boolean-field
      = ff.check_box :reblog
      = ff.label :reblog, 'Send e-mail when someone reblogs your status'
    .boolean-field
      = ff.check_box :favourite
      = ff.label :favourite, 'Send e-mail when someone favourites your status'
    .boolean-field
      = ff.check_box :mention
      = ff.label :mention, 'Send e-mail when someone mentions you'

  .actions
    = f.button 'Save changes', type: :submit

.form-footer= render "settings/shared/links"