diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-14 02:28:49 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-14 02:28:49 +0200 |
commit | 7a6d95f70ccb12d61355ecd677eff40dd13260b7 (patch) | |
tree | 93abd8019a8ca91c1c251307f0773ca008f4b875 /app/views/settings/preferences | |
parent | 9b195f5dd34ad646e1300abaaa42e10cf43cd5db (diff) |
E-mail preferences page
Diffstat (limited to 'app/views/settings/preferences')
-rw-r--r-- | app/views/settings/preferences/show.html.haml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/views/settings/preferences/show.html.haml b/app/views/settings/preferences/show.html.haml new file mode 100644 index 000000000..9c73d07c5 --- /dev/null +++ b/app/views/settings/preferences/show.html.haml @@ -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" |