E-mail preferences page
This commit is contained in:
22
app/views/settings/preferences/show.html.haml
Normal file
22
app/views/settings/preferences/show.html.haml
Normal file
@ -0,0 +1,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"
|
@ -1,7 +1,7 @@
|
||||
- content_for :page_title do
|
||||
Edit profile
|
||||
|
||||
= form_for @account, url: settings_path, html: { method: :put } do |f|
|
||||
= form_for @account, url: settings_profile_path, html: { method: :put } do |f|
|
||||
.field
|
||||
= f.text_field :display_name, placeholder: 'Display name'
|
||||
.field
|
||||
@ -14,4 +14,6 @@
|
||||
= f.file_field :header
|
||||
|
||||
.actions
|
||||
= f.button 'Save changes', type: :submit
|
||||
= f.button 'Save changes', type: :submit
|
||||
|
||||
.form-footer= render "settings/shared/links"
|
7
app/views/settings/shared/_links.html.haml
Normal file
7
app/views/settings/shared/_links.html.haml
Normal file
@ -0,0 +1,7 @@
|
||||
%ul.no-list
|
||||
- if controller_name != 'profiles'
|
||||
%li= link_to "Edit profile", settings_profile_path
|
||||
- if controller_name != 'preferences'
|
||||
%li= link_to "Preferences", settings_preferences_path
|
||||
- if controller_name != 'registrations'
|
||||
%li= link_to "Change password", edit_user_registration_path
|
Reference in New Issue
Block a user