Extract privacy_settings content in a partial
This commit is contained in:
parent
264f41a09d
commit
5537e8687b
3 changed files with 35 additions and 66 deletions
33
app/views/users/_privacy_settings.haml
Normal file
33
app/views/users/_privacy_settings.haml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
= render 'shared/settings_nav'
|
||||
|
||||
.container-fluid
|
||||
.col-lg-8.col-lg-offset-2
|
||||
%h3
|
||||
= t('.title')
|
||||
|
||||
= form_for current_user, url: user_path, html: { method: :put } do |f|
|
||||
= f.error_messages
|
||||
|
||||
= f.fields_for :stream_preferences do |type|
|
||||
#stream_prefs
|
||||
= f.label :strip_exif, class: "checkbox" do
|
||||
= f.check_box :strip_exif
|
||||
= t('.strip_exif')
|
||||
|
||||
.small-horizontal-spacer
|
||||
.clearfix
|
||||
= f.submit t('users.edit.change'), class: 'btn btn-primary pull-right'
|
||||
|
||||
%hr
|
||||
.small-horizontal-spacer
|
||||
%h3
|
||||
= t('.ignored_users')
|
||||
|
||||
- if @blocks.length.zero?
|
||||
= t('.no_user_ignored_message')
|
||||
|
||||
- @blocks.each do |block|
|
||||
= block.person_name
|
||||
\-
|
||||
= link_to t('.stop_ignoring'), block_path(block),
|
||||
method: :delete
|
||||
|
|
@ -6,36 +6,4 @@
|
|||
= t('.title')
|
||||
|
||||
.container-fluid
|
||||
= render 'shared/settings_nav'
|
||||
|
||||
.container-fluid
|
||||
.col-lg-8.col-lg-offset-2
|
||||
%h3
|
||||
= t('.title')
|
||||
|
||||
= form_for current_user, url: user_path, html: { method: :put } do |f|
|
||||
= f.error_messages
|
||||
|
||||
= f.fields_for :stream_preferences do |type|
|
||||
#stream_prefs
|
||||
= f.label :strip_exif, class: "checkbox" do
|
||||
= f.check_box :strip_exif
|
||||
= t('.strip_exif')
|
||||
|
||||
.small-horizontal-spacer
|
||||
.clearfix
|
||||
= f.submit t('users.edit.change'), class: 'btn btn-primary pull-right'
|
||||
|
||||
%hr
|
||||
.small-horizontal-spacer
|
||||
%h3
|
||||
= t('.ignored_users')
|
||||
|
||||
- if @blocks.length.zero?
|
||||
= t('.no_user_ignored_message')
|
||||
|
||||
- @blocks.each do |block|
|
||||
= block.person_name
|
||||
\-
|
||||
= link_to t('.stop_ignoring'), block_path(block),
|
||||
method: :delete
|
||||
= render "privacy_settings"
|
||||
|
|
|
|||
|
|
@ -6,36 +6,4 @@
|
|||
- content_for :page_title do
|
||||
= t('.title')
|
||||
|
||||
= render 'shared/settings_nav'
|
||||
|
||||
.container-fluid
|
||||
.col-lg-8.col-lg-offset-2
|
||||
%h3
|
||||
= t('.title')
|
||||
|
||||
= form_for current_user, url: user_path, html: { method: :put } do |f|
|
||||
= f.error_messages
|
||||
|
||||
= f.fields_for :stream_preferences do |type|
|
||||
#stream_prefs
|
||||
= f.label :strip_exif, class: "checkbox" do
|
||||
= f.check_box :strip_exif
|
||||
= t('.strip_exif')
|
||||
|
||||
.small-horizontal-spacer
|
||||
.clearfix
|
||||
= f.submit t('users.edit.change'), class: 'btn btn-primary pull-right'
|
||||
|
||||
%hr
|
||||
.small-horizontal-spacer
|
||||
%h3
|
||||
= t('.ignored_users')
|
||||
|
||||
- if @blocks.length.zero?
|
||||
= t('.no_user_ignored_message')
|
||||
|
||||
- @blocks.each do |block|
|
||||
= block.person_name
|
||||
\-
|
||||
= link_to t('.stop_ignoring'), block_path(block),
|
||||
method: :delete
|
||||
= render "privacy_settings"
|
||||
|
|
|
|||
Loading…
Reference in a new issue