2015-05-14 00:02:19 +02:00
|
|
|
- provide(:title, generate_title("Privacy Settings"))
|
2015-01-03 21:58:56 +01:00
|
|
|
.container.j2-page
|
|
|
|
= render 'settings_tabs'
|
|
|
|
.col-md-9.col-xs-12.col-sm-9
|
|
|
|
= render 'layouts/messages'
|
|
|
|
.panel.panel-default
|
|
|
|
.panel-body
|
|
|
|
= bootstrap_form_for(current_user, url: {action: "edit_privacy"}, method: "patch") do |f|
|
|
|
|
|
|
|
|
= f.check_box :privacy_allow_anonymous_questions, label: "Allow anonymous questions"
|
|
|
|
= f.check_box :privacy_allow_public_timeline, label: "Show your answers in the public timeline"
|
|
|
|
= f.check_box :privacy_allow_stranger_answers, label: "Allow other people to answer your questions"
|
|
|
|
|
2015-05-10 19:48:47 +02:00
|
|
|
= f.submit "Save settings", class: 'btn btn-primary'
|